Skip to content

Fix tests

Fix tests #61

Workflow file for this run

name: Run tests
on:
- push
- pull_request
jobs:
node:
name: Node v${{ matrix.node }} ts
runs-on: ubuntu-24.04-arm
env:
MSHOULD_FAST: 1
strategy:
matrix:
node: [22] # Nov 2025 LTS
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
with:
persist-credentials: false
submodules: 'recursive'
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
with:
registry-url: "https://registry.npmjs.org"
cache: npm
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run build --if-present
- run: npm test