Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/node-mocks-http-1.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mcansh authored Feb 3, 2025
2 parents 005444d + 24e29ec commit 4f338c3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
uses: actions/checkout@v4

- name: ⎔ Enable corepack
run: corepack enable
run: |
npm i -g corepack@latest
corepack enable
- name: ⎔ Setup node
uses: actions/setup-node@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release-experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ jobs:
fetch-depth: 0

- name: ⎔ Enable corepack
run: corepack enable
run: |
npm i -g corepack@latest
corepack enable
- name: ⎔ Setup node
uses: actions/setup-node@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
uses: actions/checkout@v4

- name: ⎔ Enable corepack
run: corepack enable
run: |
npm i -g corepack@latest
corepack enable
- name: ⎔ Setup node
uses: actions/setup-node@v4
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
uses: actions/checkout@v4

- name: ⎔ Enable corepack
run: corepack enable
run: |
npm i -g corepack@latest
corepack enable
- name: ⎔ Setup node
uses: actions/setup-node@v4
Expand Down Expand Up @@ -55,7 +57,8 @@ jobs:
uses: actions/checkout@v4

- name: ⎔ Enable corepack
run: corepack enable
run: |
npm i -g corepack@latest
- name: ⎔ Setup node
uses: actions/setup-node@v4
Expand Down

0 comments on commit 4f338c3

Please sign in to comment.