Skip to content

Commit

Permalink
ci(studio): set pnpm to 9.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Huang authored and huang-julien committed Sep 16, 2024
1 parent ad3bd92 commit 00755e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/studio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Identify package manager
id: pkgman
run: |
cache=`[ -f "docs/pnpm-lock.yaml" ] && echo "pnpm" || ([ -f "docs/package-lock.json" ] && echo "npm" || ([ -f "docs/yarn.lock" ] && echo "yarn" || echo ""))`
cache=`[ -f "pnpm-lock.yaml" ] && echo "pnpm" || ([ -f "package-lock.json" ] && echo "npm" || ([ -f "yarn.lock" ] && echo "yarn" || echo ""))`
package_manager=`[ ! -z "$cache" ] && echo "$cache" || echo "pnpm"`
echo "cache=$cache" >> $GITHUB_OUTPUT
echo "package_manager=$package_manager" >> $GITHUB_OUTPUT
Expand All @@ -50,7 +50,7 @@ jobs:
name: Install pnpm
id: pnpm-install
with:
version: 9
version: 9.10.0

- uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 00755e1

Please sign in to comment.