diff --git a/.github/workflows/diff-dependencies.yml b/.github/workflows/diff-dependencies.yml index ef7f6d6..f282f6d 100644 --- a/.github/workflows/diff-dependencies.yml +++ b/.github/workflows/diff-dependencies.yml @@ -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 @@ -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 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 602c74d..35bdec8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/package.json b/package.json index 2629d8a..d21d94a 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/recipes/bundle-diff.yml b/recipes/bundle-diff.yml index d507ead..5dc0a73 100644 --- a/recipes/bundle-diff.yml +++ b/recipes/bundle-diff.yml @@ -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 @@ -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