Files
matrix-authentication-service/.github/scripts/package.json
T
Quentin Gliech d5d6b1b90d Include .github/scripts in the pnpm workspace
This package only provides type-checking and editor IntelliSense for the
.cjs scripts loaded by actions/github-script in workflows — nothing in
CI relies on its node_modules being present. But folding it into the
workspace means there's exactly one lockfile to update and one
`pnpm install` to run.

Two new pnpm-workspace.yaml entries fall out:

 - allowBuilds: @actions/github-script (fetched from git, has a husky
   prepare script that compiles dist/).
 - trustPolicyExclude: undici@5.29.0, a transitive of @actions/http-client
   whose older 5.x releases shipped with provenance but this one doesn't.

The local .github/scripts/.gitignore is now redundant since the root
.gitignore covers node_modules workspace-wide.
2026-05-12 12:51:21 +02:00

9 lines
168 B
JSON

{
"name": "mas-gha-scripts",
"private": true,
"devDependencies": {
"@actions/github-script": "github:actions/github-script",
"typescript": "^5.9.3"
}
}