Skip to content

Commit bfb4c65

Browse files
committed
Remove node task runner as it's not supported in 18.x
1 parent ce35b98 commit bfb4c65

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
- name: lint+format
2626
run: biome ci
2727
- name: build
28-
run: node --run build
28+
run: npm run build
2929
- name: test
30-
run: node --run test
30+
run: npm run test

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
id: changesets
2929
uses: changesets/action@v1
3030
with:
31-
publish: node --run release
31+
publish: npm run release
3232
title: Publish <version>
3333
env:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"generate:map": "tsx scripts/generateClientTypesMap",
3939
"generate:tests": "tsx scripts/generateNewClientTests",
4040
"lint": "biome lint --write",
41-
"release": "node --run build && changeset publish",
41+
"release": "npm run build && changeset publish",
4242
"test": "vitest"
4343
},
4444
"dependencies": {

0 commit comments

Comments
 (0)