Skip to content

build: switched package.json import method during build to cover supp… #59

build: switched package.json import method during build to cover supp…

build: switched package.json import method during build to cover supp… #59

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