Skip to content

test code with all supported Node versions #21

test code with all supported Node versions

test code with all supported Node versions #21

Workflow file for this run

name: Test Package
on: push
jobs:
test:
runs-on: ubuntu-22.04
timeout-minutes: 15
strategy:
matrix:
node_version: [16, 18, 20]
steps:
- uses: actions/checkout@v4
- uses: aboutbits/github-actions-node/setup-and-install@v2
with:
node-version: ${{ matrix.node_version }}
- run: npm run lint
- run: npm run typecheck
- run: npm run test