Skip to content

Commit

Permalink
ci(workflows/ci): setup node before enabling corepack (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
SunsetTechuila authored Jun 28, 2024
1 parent f8f9896 commit e251df5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,15 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Setup target Node.js to enable Corepack
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Enable Corepack
run: corepack enable

- name: Setup Node.js ${{ matrix.node }}
- name: Setup Node.js ${{ matrix.node }} with cache
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
Expand Down

0 comments on commit e251df5

Please sign in to comment.