Skip to content

Bump the github-actions group across 1 directory with 3 updates #38

Bump the github-actions group across 1 directory with 3 updates

Bump the github-actions group across 1 directory with 3 updates #38

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- 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