Skip to content

Bump actions/checkout from 6.0.3 to 7.0.0 #196

Bump actions/checkout from 6.0.3 to 7.0.0

Bump actions/checkout from 6.0.3 to 7.0.0 #196

Workflow file for this run

name: Unit Tests
on:
pull_request:
paths-ignore:
- '**.md'
push:
branches: [master]
paths-ignore:
- '**.md'
jobs:
test-js:
name: JavaScript
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20
- 21
steps:
- name: Checkout repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- name: Install NPM dependencies and build
run: npm ci
- name: Run tests
run: npm run test