Skip to content

Commit

Permalink
Set correct shell to install pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
jschram committed Dec 11, 2024
1 parent 67b35f0 commit cd2347f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: . ~/.nvm/nvm.sh && nvm install 20

- name: Install pnpm
run: curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=8.15.8 sh -
run: curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=8.15.8 /bin/bash -

- name: Syntax Errors
run: find app database tests config routes -name "*.php" -print0 | xargs -0 -n1 -P8 php -l
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
run: . ~/.nvm/nvm.sh && nvm install 20

- name: Install pnpm
run: curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=8.15.8 sh -
run: curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=8.15.8 /bin/bash -

- name: Install Composer Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand Down

0 comments on commit cd2347f

Please sign in to comment.