Skip to content

Fixes for running on windows #56

Fixes for running on windows

Fixes for running on windows #56

Workflow file for this run

name: Node.js Automation
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm install
- run: npm test
- run: npm run lint
- run: npm run type-check
- run: npm run docs