Skip to content

updates

updates #1

Workflow file for this run

name: Code QA
on:
- push
defaults:
run:
shell: bash
jobs:
frontend:
name: "Frontend: Lint"
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm ci --prefer-offline
- run: npm run codegen
- run: npm run lint
- run: npm run typecheck