Skip to content

Commit

Permalink
👷 (CI/CD) Fix lack of pnpm install step in workflow
Browse files Browse the repository at this point in the history
silly me
  • Loading branch information
djmango committed Nov 30, 2023
1 parent 9ff1d1c commit de7912b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-
# Install pnpm
- name: Install pnpm
run: npm install -g pnpm

# Install modules using pnpm
- name: Install modules
run: pnpm install
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-
# Install pnpm
- name: Install pnpm
run: npm install -g pnpm

- name: Build
id: build
run: |
Expand Down

0 comments on commit de7912b

Please sign in to comment.