@@ -744,7 +744,7 @@ jobs:
744744 else
745745 # strip leading slash from directory so it works as a
746746 # a path to the workspace flag
747- echo "workspace=-w \${dependabot_dir#/}" >> $GITHUB_OUTPUT
747+ echo "workspace=--workspace \${dependabot_dir#/}" >> $GITHUB_OUTPUT
748748 fi
749749
750750 - name: Apply Changes
@@ -1906,9 +1906,9 @@ jobs:
19061906 - name: Install Dependencies
19071907 run: npm i --ignore-scripts --no-audit --no-fund
19081908 - name: Lint
1909- run: npm run lint --ignore-scripts -w a
1909+ run: npm run lint --ignore-scripts --workspace a
19101910 - name: Post Lint
1911- run: npm run postlint --ignore-scripts -w a
1911+ run: npm run postlint --ignore-scripts --workspace a
19121912
19131913 test:
19141914 name: Test - \${{ matrix.platform.name }} - \${{ matrix.node-version }}
@@ -1960,7 +1960,7 @@ jobs:
19601960 - name: Add Problem Matcher
19611961 run: echo "::add-matcher::.github/matchers/tap.json"
19621962 - name: Test
1963- run: npm test --ignore-scripts -w a
1963+ run: npm test --ignore-scripts --workspace a
19641964
19651965.github/workflows/ci-b.yml
19661966========================================
@@ -2015,9 +2015,9 @@ jobs:
20152015 - name: Install Dependencies
20162016 run: npm i --ignore-scripts --no-audit --no-fund
20172017 - name: Lint
2018- run: npm run lint --ignore-scripts -w b
2018+ run: npm run lint --ignore-scripts --workspace b
20192019 - name: Post Lint
2020- run: npm run postlint --ignore-scripts -w b
2020+ run: npm run postlint --ignore-scripts --workspace b
20212021
20222022 test:
20232023 name: Test - \${{ matrix.platform.name }} - \${{ matrix.node-version }}
@@ -2069,7 +2069,7 @@ jobs:
20692069 - name: Add Problem Matcher
20702070 run: echo "::add-matcher::.github/matchers/tap.json"
20712071 - name: Test
2072- run: npm test --ignore-scripts -w b
2072+ run: npm test --ignore-scripts --workspace b
20732073
20742074.github/workflows/ci-release.yml
20752075========================================
@@ -2135,9 +2135,9 @@ jobs:
21352135 - name: Install Dependencies
21362136 run: npm i --ignore-scripts --no-audit --no-fund
21372137 - name: Lint
2138- run: npm run lint --ignore-scripts -ws -iwr --if-present
2138+ run: npm run lint --ignore-scripts --workspaces --include-workspace-root --if-present
21392139 - name: Post Lint
2140- run: npm run postlint --ignore-scripts -ws -iwr --if-present
2140+ run: npm run postlint --ignore-scripts --workspaces --include-workspace-root --if-present
21412141 - name: Conclude Check
21422142 uses: LouisBrunner/[email protected] 21432143 if: steps.create-check.outputs.check-id && always()
@@ -2206,7 +2206,7 @@ jobs:
22062206 - name: Add Problem Matcher
22072207 run: echo "::add-matcher::.github/matchers/tap.json"
22082208 - name: Test
2209- run: npm test --ignore-scripts -ws -iwr --if-present
2209+ run: npm test --ignore-scripts --workspaces --include-workspace-root --if-present
22102210 - name: Conclude Check
22112211 uses: LouisBrunner/[email protected] 22122212 if: steps.create-check.outputs.check-id && always()
@@ -2430,7 +2430,7 @@ jobs:
24302430 else
24312431 # strip leading slash from directory so it works as a
24322432 # a path to the workspace flag
2433- echo "workspace=-w \${dependabot_dir#/}" >> $GITHUB_OUTPUT
2433+ echo "workspace=--workspace \${dependabot_dir#/}" >> $GITHUB_OUTPUT
24342434 fi
24352435
24362436 - name: Apply Changes
@@ -2771,7 +2771,7 @@ jobs:
27712771 - name: Run Post Pull Request Actions
27722772 env:
27732773 GITHUB_TOKEN: \${{ secrets.GITHUB_TOKEN }}
2774- run: npm run rp-pull-request --ignore-scripts -ws -iwr --if-present -- --pr="\${{ needs.release.outputs.pr-number }}" --commentId="\${{ needs.release.outputs.comment-id }}"
2774+ run: npm run rp-pull-request --ignore-scripts --workspaces --include-workspace-root --if-present -- --pr="\${{ needs.release.outputs.pr-number }}" --commentId="\${{ needs.release.outputs.comment-id }}"
27752775 - name: Commit
27762776 id: commit
27772777 env:
@@ -3068,8 +3068,8 @@ package.json
30683068 "snap": "tap",
30693069 "test": "tap",
30703070 "posttest": "npm run lint",
3071- "test-all": "npm run test -ws -iwr --if-present",
3072- "lint-all": "npm run lint -ws -iwr --if-present"
3071+ "test-all": "npm run test --workspaces --include-workspace-root --if-present",
3072+ "lint-all": "npm run lint --workspaces --include-workspace-root --if-present"
30733073 },
30743074 "author": "GitHub Inc.",
30753075 "files": [
@@ -3607,9 +3607,9 @@ jobs:
36073607 - name: Install Dependencies
36083608 run: npm i --ignore-scripts --no-audit --no-fund
36093609 - name: Lint
3610- run: npm run lint --ignore-scripts -w a
3610+ run: npm run lint --ignore-scripts --workspace a
36113611 - name: Post Lint
3612- run: npm run postlint --ignore-scripts -w a
3612+ run: npm run postlint --ignore-scripts --workspace a
36133613
36143614 test:
36153615 name: Test - \${{ matrix.platform.name }} - \${{ matrix.node-version }}
@@ -3661,7 +3661,7 @@ jobs:
36613661 - name: Add Problem Matcher
36623662 run: echo "::add-matcher::.github/matchers/tap.json"
36633663 - name: Test
3664- run: npm test --ignore-scripts -w a
3664+ run: npm test --ignore-scripts --workspace a
36653665
36663666.github/workflows/ci-b.yml
36673667========================================
@@ -3716,9 +3716,9 @@ jobs:
37163716 - name: Install Dependencies
37173717 run: npm i --ignore-scripts --no-audit --no-fund
37183718 - name: Lint
3719- run: npm run lint --ignore-scripts -w b
3719+ run: npm run lint --ignore-scripts --workspace b
37203720 - name: Post Lint
3721- run: npm run postlint --ignore-scripts -w b
3721+ run: npm run postlint --ignore-scripts --workspace b
37223722
37233723 test:
37243724 name: Test - \${{ matrix.platform.name }} - \${{ matrix.node-version }}
@@ -3770,7 +3770,7 @@ jobs:
37703770 - name: Add Problem Matcher
37713771 run: echo "::add-matcher::.github/matchers/tap.json"
37723772 - name: Test
3773- run: npm test --ignore-scripts -w b
3773+ run: npm test --ignore-scripts --workspace b
37743774
37753775.github/workflows/ci-release.yml
37763776========================================
@@ -3836,9 +3836,9 @@ jobs:
38363836 - name: Install Dependencies
38373837 run: npm i --ignore-scripts --no-audit --no-fund
38383838 - name: Lint
3839- run: npm run lint --ignore-scripts -ws -iwr --if-present
3839+ run: npm run lint --ignore-scripts --workspaces --include-workspace-root --if-present
38403840 - name: Post Lint
3841- run: npm run postlint --ignore-scripts -ws -iwr --if-present
3841+ run: npm run postlint --ignore-scripts --workspaces --include-workspace-root --if-present
38423842 - name: Conclude Check
38433843 uses: LouisBrunner/[email protected] 38443844 if: steps.create-check.outputs.check-id && always()
@@ -3907,7 +3907,7 @@ jobs:
39073907 - name: Add Problem Matcher
39083908 run: echo "::add-matcher::.github/matchers/tap.json"
39093909 - name: Test
3910- run: npm test --ignore-scripts -ws -iwr --if-present
3910+ run: npm test --ignore-scripts --workspaces --include-workspace-root --if-present
39113911 - name: Conclude Check
39123912 uses: LouisBrunner/[email protected] 39133913 if: steps.create-check.outputs.check-id && always()
@@ -3974,7 +3974,7 @@ jobs:
39743974 else
39753975 # strip leading slash from directory so it works as a
39763976 # a path to the workspace flag
3977- echo "workspace=-w \${dependabot_dir#/}" >> $GITHUB_OUTPUT
3977+ echo "workspace=--workspace \${dependabot_dir#/}" >> $GITHUB_OUTPUT
39783978 fi
39793979
39803980 - name: Apply Changes
@@ -4315,7 +4315,7 @@ jobs:
43154315 - name: Run Post Pull Request Actions
43164316 env:
43174317 GITHUB_TOKEN: \${{ secrets.GITHUB_TOKEN }}
4318- run: npm run rp-pull-request --ignore-scripts -ws -iwr --if-present -- --pr="\${{ needs.release.outputs.pr-number }}" --commentId="\${{ needs.release.outputs.comment-id }}"
4318+ run: npm run rp-pull-request --ignore-scripts --workspaces --include-workspace-root --if-present -- --pr="\${{ needs.release.outputs.pr-number }}" --commentId="\${{ needs.release.outputs.comment-id }}"
43194319 - name: Commit
43204320 id: commit
43214321 env:
0 commit comments