chore(deps): bump flask from 2.0.1 to 3.0.0 #229
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Django and Node | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Cache node_modules | |
uses: actions/[email protected] | |
id: cached-node_modules | |
with: | |
path: | | |
node_modules | |
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
- name: Install all yarn packages | |
if: steps.cached-node_modules.outputs.cache-hit != 'true' | |
run: | | |
yarn --frozen-lockfile | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Cache pip | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('dev-requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install Dependencies | |
run: | | |
pip install -U pip wheel --progress-bar off | |
pip install -r requirements.txt --progress-bar off | |
- name: Run lints | |
run: | | |
black --check app.py | |
flake8 app.py | |
yarn prettier:check | |
- name: Build client | |
run: | | |
yarn run build |