Skip to content

feat!: new ReaderWatch class for handling deleted or replaced files #64

feat!: new ReaderWatch class for handling deleted or replaced files

feat!: new ReaderWatch class for handling deleted or replaced files #64

Workflow file for this run

name: Node.js Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18.x, 20.x, 22.x]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test