Skip to content

build: add Node 10 and macOS, update JSHint and GitHub Actions, adopt… #19

build: add Node 10 and macOS, update JSHint and GitHub Actions, adopt…

build: add Node 10 and macOS, update JSHint and GitHub Actions, adopt… #19

Workflow file for this run

name: Tests
on: [push, pull_request]
env:
FORCE_COLOR: 2
jobs:
tests:
strategy:
fail-fast: false
matrix:
node: [10, 12, 20, 22]
# Node 10-20 are not available on ARM, use macos-15-intel instead
os: [ubuntu-latest, macos-15-intel, windows-latest]
include:
- os: macos-latest
node: 22
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test
# We test multiple Windows shells because of prior stdout buffering issues
# filed against Grunt. https://github.com/joyent/node/issues/3584
- name: Run PowerShell tests
run: "npm test # PowerShell" # Pass comment to PS for easier debugging
shell: powershell
if: startsWith(matrix.os, 'windows')