Skip to content

Bump the npm-packages group across 1 directory with 4 updates #193

Bump the npm-packages group across 1 directory with 4 updates

Bump the npm-packages group across 1 directory with 4 updates #193

Workflow file for this run

name: Unit tests
on:
pull_request:
push:
branches:
- 'trunk'
- 'releases/*'
jobs:
# Runs the unit test suite.
#
# Performs the following steps:
# - Checks out the repository.
# - Sets up Node.js.
# - Installs npm dependencies.
# - Runs the unit tests.
unit-tests:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Set up Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm test