31 lines
471 B
YAML
31 lines
471 B
YAML
name: Web CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
paths:
|
|
- '.github/**'
|
|
- 'web/**'
|
|
pull_request:
|
|
paths:
|
|
- '.github/**'
|
|
- 'web/**'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: web
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: '22'
|
|
|
|
- run: npm install
|
|
- run: npm run check
|
|
- run: npm run test:unit
|