Skip to content

add a bunch of things #1

add a bunch of things

add a bunch of things #1

Workflow file for this run

name: Test
on:
push:
branches: "main"
paths-ignore:
- .gitignore
- LICENSE
- README.md
- .github/**
- "!.github/workflows/test-nodejs.yml"
pull_request:
paths:
- .gitignore
- LICENSE
- README.md
- .github/**
- "!.github/workflows/test-nodejs.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
node-version: ["16", "18", "20"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test