Skip to content

Make tests pass in Node.js v20 by moving from mock-fs to fs-monkey + … #4

Make tests pass in Node.js v20 by moving from mock-fs to fs-monkey + …

Make tests pass in Node.js v20 by moving from mock-fs to fs-monkey + … #4

Workflow file for this run

name: Cross-OS Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
node:
- 18
- 20
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} (Node v${{ matrix.node }})
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test