File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 55 description : ' Space-separated list of nixpkgs packages to install (e.g., "nodejs_24 pnpm_10 oxlint")'
66 required : false
77 default : ' nodejs_24 pnpm_10'
8+ skip-pnpm-install :
9+ description : ' Skip pnpm install step (useful for jobs that do not need node dependencies)'
10+ required : false
11+ default : ' false'
812runs :
913 using : ' composite'
1014 steps :
2428 nix profile install $packages
2529
2630 - name : Install pnpm dependencies
31+ if : inputs.skip-pnpm-install != 'true'
2732 shell : bash
2833 run : pnpm install --frozen-lockfile
Original file line number Diff line number Diff line change 2828 uses : ./.github/actions/setup-nix
2929 with :
3030 tools : gitleaks
31+ skip-pnpm-install : ' true'
3132
3233 - name : Run Gitleaks
3334 run : gitleaks detect --source . --config .gitleaks.toml
You can’t perform that action at this time.
0 commit comments