Skip to content

2.0.1

2.0.1 #6

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-version: [20.x, 22.x, 24.x]
include:
# Exercises the Windows SIGINT stand-in in the child-process tests.
- os: windows-latest
node-version: 24.x
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: Run linter and formatter
run: |
npm run lint:check
npm run format:check
- name: Run integration tests
run: npm test