Skip to content

1.1.11

1.1.11 #2

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: [18.x, 20.x, 22.x]
include:
# Exercises the Windows SIGINT stand-in in the child-process tests.
- os: windows-latest
node-version: 22.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