Skip to content

Commit b3197ac

Browse files
committed
chore: fix CI
1 parent 86c9787 commit b3197ac

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: Enable Corepack
20-
run: corepack enable
20+
run: npx corepack enable
2121
- name: Use Node.js ${{ matrix.node-version }}
2222
uses: actions/setup-node@v4
2323
with:
@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040
- uses: actions/checkout@v4
4141
- name: Enable Corepack
42-
run: corepack enable
42+
run: npx corepack enable
4343

4444
- name: Use Node.js ${{ matrix.node-version }}
4545
uses: actions/setup-node@v4

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222

23-
- run: corepack enable && pnpm i --frozen-lockfile
23+
- run: npx corepack enable && pnpm i --frozen-lockfile
2424
- run: node --run lint
2525
- run: node --run ts-check
2626
- run: node --run build
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
node-version: '22.x'
3838

39-
- run: corepack enable && pnpm i --frozen-lockfile
39+
- run: npx corepack enable && pnpm i --frozen-lockfile
4040
- run: node --run build
4141

4242
- name: Publish to Open VSX Registry
@@ -57,7 +57,7 @@ jobs:
5757
with:
5858
node-version: '22.x'
5959

60-
- run: corepack enable && pnpm i --frozen-lockfile
60+
- run: npx corepack enable && pnpm i --frozen-lockfile
6161
- run: node --run build
6262

6363
- name: Publish to Visual Studio Marketplace

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ depends = ['docs:build']
2626

2727
[tasks.install]
2828
description = 'Installs dependencies with pnpm'
29-
run = 'corepack enable && pnpm install'
29+
run = 'npx corepack enable && pnpm install'
3030
sources = ['package.json', 'pnpm-lock.yaml']
3131
outputs = ['node_modules/.pnpm/lock.yaml']
3232

0 commit comments

Comments
 (0)