Skip to content

Commit

Permalink
ci: place corepack script before node setup
Browse files Browse the repository at this point in the history
  • Loading branch information
calebpitan committed Nov 6, 2024
1 parent 86eaa50 commit 4d4e1f2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Corepack and Yarn 4 Setup
run: |
corepack enable
corepack prepare yarn@${{ env.YARN_VERSION }}
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Corepack and Yarn 4 Setup
run: |
corepack enable && corepack prepare yarn@${{ env.YARN_VERSION }}
- name: Install Dependencies
run: yarn --immutable
- name: Run Unit Test Suite
Expand Down

0 comments on commit 4d4e1f2

Please sign in to comment.