Skip to content

chore(deps): update dependency path-to-regexp@<0.1.13 to v1 [security] #30503

chore(deps): update dependency path-to-regexp@<0.1.13 to v1 [security]

chore(deps): update dependency path-to-regexp@<0.1.13 to v1 [security] #30503

Workflow file for this run

name: UI
on:
push:
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
merge_group:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
skip-check:
name: Skip check
continue-on-error: true
runs-on: ubuntu-latest
timeout-minutes: 10
outputs:
should_skip: ${{ steps.skip-check.outputs.should_skip }}
permissions:
actions: write
contents: read
steps:
- id: skip-check
uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf # v5.3.1
with:
do_not_skip: '["schedule", "workflow_dispatch"]'
paths: |-
[
".github/workflows/ui.yml",
".node-version",
"ui/**"
]
skip_after_successful_duplicate: false
test:
name: UI Test and Lint
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
- name: Set up Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: ui/pnpm-lock.yaml
- name: Install project dependencies
run: pnpm install --frozen-lockfile --prefer-offline
working-directory: ui
- run: pnpm run build
working-directory: ui
- run: pnpm run test
working-directory: ui
- name: Check typing
working-directory: ui
run: pnpm run type-check
- name: Run ESLint
working-directory: ui
run: pnpm run lint