Skip to content

deps(dev): bump @humanfs/node from 0.16.7 to 0.16.8 #553

deps(dev): bump @humanfs/node from 0.16.7 to 0.16.8

deps(dev): bump @humanfs/node from 0.16.7 to 0.16.8 #553

Workflow file for this run

name: CI Test Suite
on:
- push
- workflow_dispatch
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['22.x', '24.x']
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node_version }}
cache: npm
- run: npm ci
- name: Unit tests
run: npm test
- name: Check linting
run: npm run lint