Skip to content

Bump concurrently from 9.2.1 to 10.0.3 #188

Bump concurrently from 9.2.1 to 10.0.3

Bump concurrently from 9.2.1 to 10.0.3 #188

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- 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