4171ee99a1
CI / Architecture Guardrails (push) Successful in 6m48s
CI / Lint (push) Successful in 6m38s
CI / Unit Tests (push) Failing after 3m5s
CI / Typecheck (push) Successful in 10m1s
CI / Build (push) Failing after 18s
CI / E2E Tests (push) Has been skipped
CI / Assistant Split Regression (push) Successful in 10m59s
CI / Release Images (push) Has been skipped
CI / Fresh-Linux Docker Deploy (push) Has been skipped
act_runner sometimes checks out moving tag @v4 without the built dist/ output, breaking all jobs with MODULE_NOT_FOUND on setup/index.js. Pinning to a tagged release avoids the incomplete checkout.
35 lines
664 B
YAML
35 lines
664 B
YAML
name: Nightly Security
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "17 2 * * *"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
NODE_VERSION: "20"
|
|
PNPM_VERSION: "9.14.2"
|
|
|
|
jobs:
|
|
dependency-audit:
|
|
name: Dependency Audit
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install pnpm
|
|
run: npm install -g pnpm@${{ env.PNPM_VERSION }}
|
|
|
|
- uses: actions/setup-node@v4.0.4
|
|
with:
|
|
node-version: ${{ env.NODE_VERSION }}
|
|
cache: pnpm
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Run dependency audit
|
|
run: pnpm audit --audit-level=high
|