Skip to content

docs(wave): add phase2 progress and extension-point guides #1

docs(wave): add phase2 progress and extension-point guides

docs(wave): add phase2 progress and extension-point guides #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
backend:
runs-on: ubuntu-latest
timeout-minutes: 20
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: backend/package-lock.json
- run: node --version && npm --version
- run: test -f package-lock.json
- run: npm ci --include=dev
- run: npm run lint
- run: npm run typecheck
- run: npm run test -- --runInBand
frontend:
runs-on: ubuntu-latest
timeout-minutes: 20
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: node --version && npm --version
- run: test -f package-lock.json
- run: npm ci --include=dev
- run: npm run lint
- run: npm run typecheck
- run: npm run build