Skip to content

Commit 41ea4be

Browse files
committed
add for all workflows
1 parent fdae88a commit 41ea4be

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Diff for: .github/workflows/lint-check.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v4
13-
14-
- name: Enable Corepack
15-
run: corepack enable
13+
- run: |
14+
npm install -g corepack@latest
15+
corepack enable
1616
1717
- name: Set up Node.js
1818
uses: actions/setup-node@v4

Diff for: .github/workflows/test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ jobs:
1111
runs-on: [ubuntu-latest]
1212
steps:
1313
- uses: actions/checkout@v4
14-
- run: corepack enable
14+
- run: |
15+
npm install -g corepack@latest
16+
corepack enable
1517
- uses: actions/setup-node@v4
1618
with:
1719
node-version: 20

0 commit comments

Comments
 (0)