Skip to content

Bump the npm-packages group across 1 directory with 6 updates #103

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

Bump the npm-packages group across 1 directory with 6 updates #103

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- 'trunk'
- 'releases/*'
jobs:
# Runs the linters.
#
# Performs the following steps:
# - Checks out the repository.
# - Sets up Node.js.
# - Installs npm dependencies.
# - Runs the linters.
lint:
name: Run Linters
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 linters
run: npm run lint