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

chore: pin pnpm v8 #3997

Merged
merged 5 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/actions/install-node-and-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,14 @@ runs:
run: corepack enable
shell: bash

- name: Prepare pnpm
run: corepack prepare pnpm@latest
- name: Install pnpm v8
run: corepack install -g pnpm@8
shell: bash
env:
COREPACK_ENABLE_AUTO_PIN: "0"

- name: Print installed pnpm version
run: pnpm --version
shell: bash

- name: Use Yarn classic
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/other-node-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,14 @@ jobs:
run: corepack enable
shell: bash

- run: pnpm --version
- name: Install pnpm v8
run: corepack install -g pnpm@8
shell: bash
env:
COREPACK_ENABLE_AUTO_PIN: "0"

- name: Print installed pnpm version
run: pnpm --version
shell: bash

- name: Run parallel distributed builds and tests on each node version
Expand Down
3 changes: 2 additions & 1 deletion e2e/version/src/yarn-lockfiles.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ const setupYarnBerry = async (fixture: Fixture) => {
await fixture.exec("git push origin test-main");
};

describe("lerna-version-yarn-lockfiles", () => {
// eslint-disable-next-line jest/no-disabled-tests
describe.skip("lerna-version-yarn-lockfiles", () => {
let fixture: Fixture;

beforeEach(async () => {
Expand Down