Skip to content

chore: lock node-gyp used for compile commands #5

chore: lock node-gyp used for compile commands

chore: lock node-gyp used for compile commands #5

Workflow file for this run

name: CI
on:
pull_request:
jobs:
build-test:
name: Build & Test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-14, windows-2022]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install dependencies and build
run: npm ci
- name: Test
run: npm test
- name: Lint
run: npm run lint