Skip to content

Bump eslint from 8.56.0 to 9.6.0 in the npm-packages group across 1 directory #40

Bump eslint from 8.56.0 to 9.6.0 in the npm-packages group across 1 directory

Bump eslint from 8.56.0 to 9.6.0 in the npm-packages group across 1 directory #40

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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Node.js
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm test