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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Check supply-chain policy
run: pnpm run policy:check

- name: Build packages
run: pnpm build

Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@
"clean": "pnpm -r run clean",
"test": "pnpm -r run test",
"lint": "pnpm -r run lint",
"deps": "pnpm up -r -i -L"
"deps": "pnpm up -r -i -L",
"policy": "pnpm-policy generate --builds-key onlyBuiltDependencies",
"policy:check": "pnpm-policy check --builds-key onlyBuiltDependencies"
},
"devDependencies": {
"@constructive-io/pnpm-policy": "0.2.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.15.0",
Expand All @@ -33,6 +36,7 @@
"eslint-plugin-unused-imports": "^4.3.0",
"jest": "^30.2.0",
"lerna": "^8.2.4",
"pnpm-policy": "^0.2.2",
"prettier": "^3.6.2",
"rimraf": "6.1.2",
"ts-jest": "^29.2.5",
Expand Down
Loading
Loading