Skip to content

build(deps): bump the dependencies group across 1 directory with 40 updates #290

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

build(deps): bump the dependencies group across 1 directory with 40 updates #290

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@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
with:
egress-policy: audit
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.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