-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: corepack proxy * fix: lock corepack 0.24.1
- Loading branch information
Showing
2 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,9 +27,12 @@ runs: | |
with: | ||
node-version: 18 | ||
- shell: bash | ||
run: corepack enable | ||
- shell: bash | ||
run: pnpm --version | ||
name: Install package manager | ||
run: | | ||
npm install -g [email protected] | ||
echo "Corepack version: $(corepack --version)" | ||
corepack enable | ||
- name: Checkout Rspack repo | ||
uses: actions/checkout@v4 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,13 +33,12 @@ runs: | |
with: | ||
node-version: ${{ inputs.node-version }} | ||
- shell: bash | ||
name: Install package manager | ||
run: | | ||
cd ${{ inputs.path }} | ||
npm install -g [email protected] | ||
echo "Corepack version: $(corepack --version)" | ||
corepack enable | ||
- shell: bash | ||
run: | | ||
cd ${{ inputs.path }} | ||
pnpm --version | ||
- id: rust-cache | ||
uses: MasterworksIO/action-local-cache@2 | ||
with: | ||
|