Skip to content

Merge pull request #52 from heroku/chore/onboard-shared-release-workf… #153

Merge pull request #52 from heroku/chore/onboard-shared-release-workf…

Merge pull request #52 from heroku/chore/onboard-shared-release-workf… #153

Workflow file for this run

name: CI Test Suite
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['22.x', '24.x']
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
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: Unit tests and lint
run: npm test