Skip to content

also adding auto deploy once a month, in case of a certificate renewal #231

also adding auto deploy once a month, in case of a certificate renewal

also adding auto deploy once a month, in case of a certificate renewal #231

Workflow file for this run

name: Lint
on: [push]
jobs:
Ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install API Dependencies
working-directory: api
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Ruff
working-directory: api
run: ruff .
ESLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install client dependencies
working-directory: client
run: npm ci
- name: Run ESLint
working-directory: client
run: npm run lint