Skip to content

Add Node 22 to CI (#14) #53

Add Node 22 to CI (#14)

Add Node 22 to CI (#14) #53

Workflow file for this run

name: Check Code
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
check-code:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 18, 20, 21, 22 ]
name: Check Code (Node ${{ matrix.node }})
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- run: npm run check-code
- run: npm run check-samples