Skip to content

Merge pull request #5 from enter-at:feature/label #7

Merge pull request #5 from enter-at:feature/label

Merge pull request #5 from enter-at:feature/label #7

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 18.x
- 20.x
- 22.x
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test