Skip to content

Bump actions/checkout from 4.1.7 to 4.2.0 #658

Bump actions/checkout from 4.1.7 to 4.2.0

Bump actions/checkout from 4.1.7 to 4.2.0 #658

Workflow file for this run

name: GitHub CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: General checks, tests and coverage reporting
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js LTS 20.11.0
uses: actions/[email protected]
with:
node-version: 20.11.0
- name: Install dependencies
run: npm ci
- name: Perform checks and tests
run: npm test
- name: Send report to Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
test-matrix:
name: Unit tests on Node.js ${{ matrix.node-version }} and ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [20, 22]
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
name: Install dependencies
- run: npm ls --prod
name: Check for missing / extraneous Dependencies
- run: npm run unit
name: Run unit tests