Skip to content

Fix shutdown dates for Sep 2024 #111

Fix shutdown dates for Sep 2024

Fix shutdown dates for Sep 2024 #111

Workflow file for this run

name: lint
on:
pull_request:
push:
branches:
- main
jobs:
frontend:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20']
python-version: ['3.12']
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Node ${{ matrix.node-version }}.x
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Check if package-lock.json is up to date
run: |
npx --yes [email protected]
- name: Lint frontend code with ESLint
run: |
curl -sSL https://install.python-poetry.org | python3 -
npm ci
npm run lint-frontend
backend:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20']
python-version: ['3.12']
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Node ${{ matrix.node-version }}.x
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Check if package-lock.json is up to date
run: |
npx --yes [email protected]
- name: Lint backend code with Flake8
run: |
curl -sSL https://install.python-poetry.org | python3 -
npm ci
npm run lint-backend