Skip to content

adding pull request template to repo #2

adding pull request template to repo

adding pull request template to repo #2

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: ['20.x', '22.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, coverage, and lint
run: npm test