Skip to content

Update supported node versions #586

Update supported node versions

Update supported node versions #586

Workflow file for this run

name: Index
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run lint
- run: npm run build
- run: npm run test
- run: npm run pkg-ok
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}