Skip to content

Commit f2f19bf

Browse files
authored
chore: replace pnpm run with node --run (#1879)
1 parent 5d7b682 commit f2f19bf

25 files changed

Lines changed: 159 additions & 159 deletions

File tree

.github/workflows/check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
- name: Install dependencies
3131
run: pnpm install --frozen-lockfile
3232
- name: Build packages
33-
run: pnpm run build
33+
run: node --run build
3434
- name: Check
35-
run: pnpm run lint
35+
run: node --run lint
3636
- name: Verify rules docs
37-
run: pnpm run check:docs
37+
run: node --run check:docs

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install dependencies
3333
run: pnpm install --frozen-lockfile --ignore-scripts
3434
- name: Build packages
35-
run: pnpm run build
35+
run: node --run build
3636
- name: Publish
3737
run: |
3838
if git log -1 --pretty=%B | grep "^release: [0-9]\+\.[0-9]\+\.[0-9]\+$";

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: pnpm install --frozen-lockfile --ignore-scripts
2929

3030
- name: Build
31-
run: pnpm run build
31+
run: node --run build
3232

3333
- name: Determine release info
3434
id: release

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
- name: Install dependencies
3131
run: pnpm install --frozen-lockfile
3232
- name: Build packages
33-
run: pnpm run build
33+
run: node --run build
3434
- name: Test on node@24
35-
run: pnpm run test
35+
run: node --run test
3636
- name: Setup node@22
3737
uses: pnpm/setup@5d160c5bc68a09337ad0d5654e237e03253b5879 # v1
3838
with:
3939
runtime: node@22
4040
install: false
4141
- name: Test on node@22
42-
run: pnpm run test
42+
run: node --run test

0 commit comments

Comments
 (0)