Update all non-major frontend-admin dependencies #1611
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frontend CI - Admin Dashboard | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
paths: | |
- 'frontend-admin/**' | |
- '.github/workflows/frontend-admin.yml' | |
jobs: | |
admin-dashboard-test: | |
name: Admin dashboard tests | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- node-version: '22' | |
experimental: false | |
node-options: '' | |
uses: ./.github/workflows/frontend-base-workflow.yml | |
with: | |
working-directory: 'frontend-admin' | |
node-version: ${{ matrix.node-version }} | |
node-options: ${{ matrix.node-options }} | |
experimental: ${{ matrix.experimental }} |