Skip to content

chore: 로컬 서버 관리 스크립트 (start|stop|restart|status|logs) #3

chore: 로컬 서버 관리 스크립트 (start|stop|restart|status|logs)

chore: 로컬 서버 관리 스크립트 (start|stop|restart|status|logs) #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
web:
name: web — typecheck + test
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: web/package-lock.json
- run: npm ci
- run: npm run typecheck
- run: npm run build
- run: npm test