Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/diff-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Build
run: npm run build
run: node --run build
- name: Pack
run: npm pack
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Build
run: npm run build
run: node --run build
- name: Pack
run: npm pack
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
run: node --run build
- name: Lint
run: npm run lint
run: node --run lint
- name: Test
run: npm run test
run: node --run test
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"scripts": {
"build": "node scripts/build.mjs",
"format": "prettier --write src test",
"lint": "npm run lint:format && npm run lint:js && npm run lint:types",
"lint": "node --run lint:format && node --run lint:js && node --run lint:types",
"lint:format": "prettier --check src test",
"lint:js": "eslint src test",
"lint:types": "tsc --noEmit",
Expand Down
4 changes: 2 additions & 2 deletions recipes/bundle-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Build
run: npm run build
run: node --run build
- name: Pack
run: npm pack

Expand All @@ -44,7 +44,7 @@ jobs:
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Build
run: npm run build
run: node --run build
- name: Pack
run: npm pack

Expand Down
Loading