Skip to content

feat(spec-site): replace all confirm()/alert() with custom modal (#23) #81

feat(spec-site): replace all confirm()/alert() with custom modal (#23)

feat(spec-site): replace all confirm()/alert() with custom modal (#23) #81

Workflow file for this run

name: Quality Gate
on:
push:
pull_request:
permissions:
contents: read
jobs:
quality:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: |
package-lock.json
scaffold/spec-site/package-lock.json
- name: Install root dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test