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
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,12 @@ updates:
github-actions:
patterns:
- "*"

- package-ecosystem: npm
directory: "/frontend"
schedule:
interval: monthly
groups:
frontend-deps:
patterns:
- "*"
29 changes: 26 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,32 @@ jobs:
- name: Lint OpenAPI contract
run: make openapi-lint

frontend-audit:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v6

- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
cache: true
cache_dependency_path: frontend/pnpm-lock.yaml
package_json_file: frontend/package.json

- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: ".tool-versions"

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Audit dependencies
run: pnpm audit --audit-level=moderate

frontend:
runs-on: ubuntu-latest
defaults:
Expand Down Expand Up @@ -148,9 +174,6 @@ jobs:
- name: Check formatting
run: pnpm run format:check

- name: Audit dependencies
run: pnpm audit --audit-level=moderate

- name: Run frontend tests
run: pnpm run test:ci

Expand Down
Loading