Skip to content

build(deps): bump the dependencies group across 1 directory with 6 updates #292

build(deps): bump the dependencies group across 1 directory with 6 updates

build(deps): bump the dependencies group across 1 directory with 6 updates #292

Workflow file for this run

name: Tests for PR
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
name: 'Run tests'
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
with:
egress-policy: audit
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version: '22'
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 'Cache node_modules'
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: |
node_modules
package-lock.json
key: ${{ runner.os }}-node-v22-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-v22-
- name: Install Dependencies
run: npm install
- name: Run Build
run: npm run build
- name: Run Non-Ui Tests
run: npm run test-no-ui