Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/admin-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Admin Frontend
permissions:
contents: read

on:
push:
paths:
- "web/admin/**"
- ".github/workflows/admin-frontend.yml"
pull_request:
paths:
- "web/admin/**"
- ".github/workflows/admin-frontend.yml"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web/admin
steps:
# actions/checkout v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
with:
persist-credentials: false
# actions/setup-node v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
with:
node-version: 24
cache: npm
cache-dependency-path: web/admin/package-lock.json
- run: npm ci --no-audit --no-fund
- run: npm run lint
- run: npm run test:run
- run: npm run build
Loading
Loading