Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Route around pnpm action #1297

Merged
merged 3 commits into from
May 27, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 23 additions & 6 deletions .github/workflows/ci-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,20 @@ jobs:
go-version: 1.18.0
id: go

- uses: pnpm/action-setup@v2.1.0
with:
version: 6.32.11
# 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:
node-version: 16

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

- name: Setup Node.js environment, now with pnpm
uses: actions/setup-node@v3
with:
node-version: 16
Expand Down Expand Up @@ -131,11 +140,19 @@ 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.2.1
# with:
# version: 6.32.11

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

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

- name: Setup Node.js environment, now with pnpm
uses: actions/setup-node@v3
with:
node-version: 16
Expand Down