Skip to content

Commit

Permalink
enable corepack in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jtoar committed Dec 15, 2023
1 parent d2f5412 commit 2627d81
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/check-create-redwood-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- run: yarn install
working-directory: ./.github/actions/check_create_redwood_app

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/check-test-project-fixture.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- run: yarn install
working-directory: ./.github/actions/check_test_project_fixture

Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ jobs:
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Yarn install
working-directory: ./tasks/check
run: yarn install --inline-builds
Expand Down Expand Up @@ -102,6 +105,9 @@ jobs:
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down Expand Up @@ -159,6 +165,9 @@ jobs:
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down Expand Up @@ -252,6 +261,9 @@ jobs:
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down Expand Up @@ -455,6 +467,9 @@ jobs:
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down Expand Up @@ -511,6 +526,9 @@ jobs:
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down Expand Up @@ -605,6 +623,9 @@ jobs:
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish-release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ jobs:
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- name: 🐈 Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/update-all-contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
with:
node-version: 18

- name: Enable Corepack
run: corepack enable

- run: yarn install

- name: Update all contributors
Expand Down

0 comments on commit 2627d81

Please sign in to comment.