Skip to content

Merge pull request #72 from toboid/dependabot/npm_and_yarn/multi-9f37… #13

Merge pull request #72 from toboid/dependabot/npm_and_yarn/multi-9f37…

Merge pull request #72 from toboid/dependabot/npm_and_yarn/multi-9f37… #13

Workflow file for this run

name: 'lint and test'
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- run: npm run ci