-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renovate PRs were all failing on initial install step, hope this will fix it.
- Loading branch information
1 parent
6984523
commit 8e57f2b
Showing
4 changed files
with
301 additions
and
756 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 |
---|---|---|
@@ -1,22 +1,16 @@ | ||
name: Setup node and pnpm | ||
description: Setup node and install dependencies using pnpm | ||
runs: | ||
using: "composite" | ||
using: 'composite' | ||
steps: | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: 7 | ||
version: 8.6.5 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
cache: 'pnpm' | ||
- name: 'Install dependencies' | ||
shell: 'bash' | ||
run: | | ||
pnpm -v | ||
pnpm install --fix-lockfile | ||
git_diff=$(git diff) | ||
if [[ "$git_diff" -eq "" ]]; then | ||
echo "Success: no lockfile differences" ; | ||
else | ||
echo "Error: lockfile differences detected"; | ||
fi | ||
pnpm install |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
auto-install-peers=false |
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 |
---|---|---|
|
@@ -51,6 +51,6 @@ | |
}, | ||
"volta": { | ||
"node": "18.16.0", | ||
"pnpm": "7.33.0" | ||
"pnpm": "8.6.5" | ||
} | ||
} |
Oops, something went wrong.