webapp/.github/workflows/node-ci.yml
2024-06-06 09:16:45 +03:00

29 lines
503 B
YAML

name: "deploy"
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Install dependencies
run: npm i
- name: Install CI checks
run: npm ci
- name: Check types
run: npm run typecheck
- name: Lint with Biome
run: npm run check:code
- name: Lint styles
run: npm run lint:styles
- name: Test production build
run: npm run build