Skip to content

chore(deps): move husky to dev-dep, noissue #834

chore(deps): move husky to dev-dep, noissue

chore(deps): move husky to dev-dep, noissue #834

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [18, 20, 21]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}.x
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm run spec