Skip to content

Commit

Permalink
Comment out bumped pnpm setup action, use manual npm install of pnpm …
Browse files Browse the repository at this point in the history
…instead until the pnpm action gets fixed
  • Loading branch information
gsoltis committed May 27, 2022
1 parent 35bb097 commit 335f6a7
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/ci-go.yml
Expand Up @@ -27,9 +27,19 @@ jobs:
go-version: 1.18.0
id: go

- uses: pnpm/action-setup@v2.2.1
# Can re-enable when https://github.com/pnpm/action-setup/issues/44 is fixed
# - uses: pnpm/action-setup@v2.2.1
# with:
# version: 6.32.11

- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
version: 6.32.11
node-version: 16
# cache: pnpm

- name: Install pnpm
run: npm install -g pnpm@6.32.11

- name: Setup Node.js environment
uses: actions/setup-node@v3
Expand Down Expand Up @@ -131,15 +141,18 @@ jobs:
go-version: 1.18.0
id: go

- uses: pnpm/action-setup@v2.1.0
with:
version: 6.32.11
# - uses: pnpm/action-setup@v2.1.0
# with:
# version: 6.32.11

- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 16
cache: pnpm
# cache: pnpm

- name: Install pnpm
run: npm install -g pnpm@6.32.11

- name: Check ${{matrix.example}} example with ${{ matrix.manager }}
shell: bash
Expand Down

0 comments on commit 335f6a7

Please sign in to comment.