Skip to content

Bump werkzeug from 2.3.6 to 3.0.0 #201

Bump werkzeug from 2.3.6 to 3.0.0

Bump werkzeug from 2.3.6 to 3.0.0 #201

Workflow file for this run

name: Build Status
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: actions/[email protected]
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- name: Install Python dependencies
run: |
pip install pipenv
pipenv install --dev
- name: Install Node dependencies
run: npm install
- run: cp .env.example .env
- name: Run Node lints
run: npm run lint
- name: Run Python lints
run: pipenv run flask lint --check
- name: Run Python tests
run: pipenv run flask test