Skip to content

wip

wip #17

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
test:
name: Test on node ${{ matrix.node }}
if: github.actor != 'github-actions[bot]'
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies and test
run: |
npm install --immutable
npm run build
npm test