| 12345678910111213141516171819202122232425262728293031323334 |
- name: CI
- on:
- push:
- branches: [main]
- pull_request:
- branches: [main]
- jobs:
- build:
- runs-on: ubuntu-latest
- defaults:
- run:
- working-directory: web
- steps:
- # actions/checkout@v6
- - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- # actions/setup-node@v6
- - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
- with:
- node-version: 20
- cache: npm
- cache-dependency-path: web/package-lock.json
- - name: Install dependencies
- run: npm ci
- - name: Type check
- run: npx tsc --noEmit
- - name: Build
- run: npm run build
|