Skip to content

Merge pull request #187 from reload/dependabot/npm_and_yarn/typescrip… #713

Merge pull request #187 from reload/dependabot/npm_and_yarn/typescrip…

Merge pull request #187 from reload/dependabot/npm_and_yarn/typescrip… #713

Workflow file for this run

---
name: QA
permissions:
contents: read
on:
pull_request:
push:
paths-ignore:
- "docs/**"
- "**/*.md"
jobs:
test:
name: Tests & Typecheck
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: "npm"
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint & Typecheck
run: npm run lint
- name: Build
run: npm run build
- name: Run test
run: npm test