Skip to content

Refactor Windows filesystem tests to improve drive accessibility hand… #12

Refactor Windows filesystem tests to improve drive accessibility hand…

Refactor Windows filesystem tests to improve drive accessibility hand… #12

Workflow file for this run

# .github/workflows/test.yml
name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
node-version: [18.x, 20.x, 22.x, 23.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm test