Skip to content

build(deps-dev): bump @babel/plugin-transform-modules-systemjs from 7.29.0 to 7.29.7 #489

build(deps-dev): bump @babel/plugin-transform-modules-systemjs from 7.29.0 to 7.29.7

build(deps-dev): bump @babel/plugin-transform-modules-systemjs from 7.29.0 to 7.29.7 #489

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@58077d3c7e43986b6b15fba718e8ea69e387dfcc # v2.15.1
with:
egress-policy: audit
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '22'
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: 'Cache node_modules'
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
with:
path: |
node_modules
key: ${{ runner.os }}-node-v22-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-v22-
- name: Install Dependencies
run: npm ci
- name: Run Build
run: npm run build
- name: Run Non-Ui Tests
run: npm run test-no-ui