Skip to content

Removing http redirection to allow certbot automatic renewal (#96) #233

Removing http redirection to allow certbot automatic renewal (#96)

Removing http redirection to allow certbot automatic renewal (#96) #233

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