Skip to content

Merge pull request #63 from ems-press/feat/books-ahead-of-time-public… #285

Merge pull request #63 from ems-press/feat/books-ahead-of-time-public…

Merge pull request #63 from ems-press/feat/books-ahead-of-time-public… #285

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18', '20', '22', '24']
name: 'Build and test on node ${{ matrix.node }}'
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run lint
# - run: npm test
- run: npm run build