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
17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v2

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

- name: Lint
run: pnpm lint
Expand All @@ -51,7 +51,7 @@ jobs:
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v2

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

- name: Build
run: pnpm build
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v2

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

- name: Build
run: pnpm build
Expand All @@ -109,7 +109,7 @@ jobs:
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v2

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

- name: Build
run: pnpm build
Expand Down Expand Up @@ -137,11 +137,14 @@ jobs:
node-version: '22'

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

- name: Audit npm production dependencies
- name: Audit production dependencies (blocking)
run: pnpm audit --prod --audit-level=high

- name: Audit all dependencies (blocking)
run: pnpm audit --audit-level=high

- name: Install cargo-audit
run: cargo install cargo-audit --locked
env:
Expand Down Expand Up @@ -169,7 +172,7 @@ jobs:
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v2

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

- name: Build
run: pnpm build
Expand Down
15 changes: 14 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,19 @@
"typescript-eslint": "^8.58.0"
},
"pnpm": {
"overrides": {}
"onlyBuiltDependencies": [
"cpu-features",
"protobufjs",
"ssh2"
],
"overrides": {
"protobufjs": ">=7.5.8",
"vite": ">=8.0.5",
"lodash": ">=4.18.0",
"flatted": ">=3.4.2",
"picomatch": ">=4.0.4",
"yaml": ">=2.8.3",
"postcss": ">=8.5.14"
}
}
}
Loading
Loading