Skip to content

Commit 8d7634d

Browse files
SunsetTechuilarobtaylor
authored andcommittedAug 8, 2024
ci(workflows/ci): setup node before enabling corepack (un-ts#95)
1 parent bf8bdf9 commit 8d7634d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,15 @@ jobs:
2525
- name: Checkout Repo
2626
uses: actions/checkout@v4
2727

28+
- name: Setup target Node.js to enable Corepack
29+
uses: actions/setup-node@v4
30+
with:
31+
node-version: ${{ matrix.node }}
32+
2833
- name: Enable Corepack
2934
run: corepack enable
3035

31-
- name: Setup Node.js ${{ matrix.node }}
36+
- name: Setup Node.js ${{ matrix.node }} with cache
3237
uses: actions/setup-node@v4
3338
with:
3439
node-version: ${{ matrix.node }}

0 commit comments

Comments
 (0)
Please sign in to comment.