Skip to content

Commit

Permalink
install pnpm first
Browse files Browse the repository at this point in the history
  • Loading branch information
fellnerse committed Jan 18, 2024
1 parent a7ccac1 commit 26a03a2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deployment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install && pnpm ci-dev-build
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deployment-live.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install and Build 🔧
run: |
pnpm install
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deployment-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install && pnpm ci-dev-build
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/husky.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16
- name: install pnpm
run: npm install -g pnpm
- uses: pnpm/action-setup@v2
with:
version: 8
- name: install dependencies
run: pnpm install
- run: pnpm run prettier --write .
Expand Down

0 comments on commit 26a03a2

Please sign in to comment.