Skip to content

fix: push to router rather than replace on form submission #96

fix: push to router rather than replace on form submission

fix: push to router rather than replace on form submission #96

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
frontend:
name: Frontend
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Checkout
uses: actions/checkout@v1
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
- name: Install Dependencies
run: npm ci
- name: Format
run: npm run format:check
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test
- name: Run Build
run: npm run build
backend:
name: Backend
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install Dependencies
run: poetry install
- name: Typecheck
working-directory: backend
run: poetry run mypy
- name: Format
working-directory: backend
run: |
poetry run black . --check
poetry run isort . --check
- name: Lint
working-directory: backend
run: |
poetry run ruff check .
- name: Test
working-directory: backend
run: |
poetry run coverage run -m unittest
poetry run coverage report --skip-empty