Skip to content
Open
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
8 changes: 7 additions & 1 deletion .github/actions/setup-ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
name: "Setup CI"
description: "Setup Node.js and pnpm for CI workflows"

inputs:
pnpm_cache:
description: "Enable pnpm cache. Disable if the workflow does not run pnpm install."
required: false
default: "true"

runs:
using: "composite"
steps:
Expand All @@ -29,4 +35,4 @@ runs:
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
version: 10.31.0
cache: true
cache: ${{ inputs.pnpm_cache == 'true' }}
2 changes: 2 additions & 0 deletions .github/workflows/ci_check_license_headers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:

- name: Setup CI
uses: ./.github/actions/setup-ci
with:
pnpm_cache: "false"

- name: "Setup JDK 17"
uses: actions/setup-java@v5
Expand Down
Loading