Skip to content
Open
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: 8 additions & 1 deletion .github/workflows/backend-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,15 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
node-version: '20'
version: 9

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'pnpm'
cache-dependency-path: |
server/pnpm-lock.yaml
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/backend-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,15 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
node-version: '20'
version: 9

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'pnpm'
cache-dependency-path: |
server/pnpm-lock.yaml
Expand Down
23 changes: 14 additions & 9 deletions .github/workflows/dependency-security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,38 +28,43 @@ jobs:
- name: Dependency review
uses: actions/dependency-review-action@v4

npm-audit:
name: npm audit (${{ matrix.app }})
pnpm-audit:
name: pnpm audit (${{ matrix.app }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- app: server
path: ./server
lockfile: ./server/package-lock.json
lockfile: ./server/pnpm-lock.yaml
- app: client
path: ./client
lockfile: ./client/package-lock.json
lockfile: ./client/pnpm-lock.yaml

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
node-version: "24"
cache: pnpm
cache-dependency-path: ${{ matrix.lockfile }}

- name: Install dependencies
working-directory: ${{ matrix.path }}
run: npm ci
run: pnpm install --frozen-lockfile

- name: Run npm audit
- name: Run pnpm audit
working-directory: ${{ matrix.path }}
run: npm audit --audit-level=moderate
run: pnpm audit --audit-level=moderate

codeql:
name: CodeQL Analysis
Expand Down
66 changes: 58 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"globals": "^17.5.0",
"jsdom": "^29.0.1",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.19",
"vite": "^7.0.0",
"vite": "^8.1.5",
"vitest": "^4.1.2"
}
}
Loading
Loading