Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "22"
- run: npm install --no-audit --no-fund
# `npm ci` rather than `npm install`: it installs the lockfile exactly
# and fails when package.json and package-lock.json disagree, so CI
# tests the tree a fresh clone would get (MX-222).
- run: npm ci --no-audit --no-fund
- run: npm run typecheck
- run: npm test
Loading