Skip to content

chore(deps): bump psycopg2-binary from 2.9.7 to 2.9.8 #230

chore(deps): bump psycopg2-binary from 2.9.7 to 2.9.8

chore(deps): bump psycopg2-binary from 2.9.7 to 2.9.8 #230

Workflow file for this run

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