@@ -744,7 +744,7 @@ jobs:
744
744
else
745
745
# strip leading slash from directory so it works as a
746
746
# a path to the workspace flag
747
- echo "workspace=-w \${dependabot_dir#/}" >> $GITHUB_OUTPUT
747
+ echo "workspace=--workspace \${dependabot_dir#/}" >> $GITHUB_OUTPUT
748
748
fi
749
749
750
750
- name: Apply Changes
@@ -1906,9 +1906,9 @@ jobs:
1906
1906
- name: Install Dependencies
1907
1907
run: npm i --ignore-scripts --no-audit --no-fund
1908
1908
- name: Lint
1909
- run: npm run lint --ignore-scripts -w a
1909
+ run: npm run lint --ignore-scripts --workspace a
1910
1910
- name: Post Lint
1911
- run: npm run postlint --ignore-scripts -w a
1911
+ run: npm run postlint --ignore-scripts --workspace a
1912
1912
1913
1913
test:
1914
1914
name: Test - \${{ matrix.platform.name }} - \${{ matrix.node-version }}
@@ -1960,7 +1960,7 @@ jobs:
1960
1960
- name: Add Problem Matcher
1961
1961
run: echo "::add-matcher::.github/matchers/tap.json"
1962
1962
- name: Test
1963
- run: npm test --ignore-scripts -w a
1963
+ run: npm test --ignore-scripts --workspace a
1964
1964
1965
1965
.github/workflows/ci-b.yml
1966
1966
========================================
@@ -2015,9 +2015,9 @@ jobs:
2015
2015
- name: Install Dependencies
2016
2016
run: npm i --ignore-scripts --no-audit --no-fund
2017
2017
- name: Lint
2018
- run: npm run lint --ignore-scripts -w b
2018
+ run: npm run lint --ignore-scripts --workspace b
2019
2019
- name: Post Lint
2020
- run: npm run postlint --ignore-scripts -w b
2020
+ run: npm run postlint --ignore-scripts --workspace b
2021
2021
2022
2022
test:
2023
2023
name: Test - \${{ matrix.platform.name }} - \${{ matrix.node-version }}
@@ -2069,7 +2069,7 @@ jobs:
2069
2069
- name: Add Problem Matcher
2070
2070
run: echo "::add-matcher::.github/matchers/tap.json"
2071
2071
- name: Test
2072
- run: npm test --ignore-scripts -w b
2072
+ run: npm test --ignore-scripts --workspace b
2073
2073
2074
2074
.github/workflows/ci-release.yml
2075
2075
========================================
@@ -2135,9 +2135,9 @@ jobs:
2135
2135
- name: Install Dependencies
2136
2136
run: npm i --ignore-scripts --no-audit --no-fund
2137
2137
- 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
2139
2139
- 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
2141
2141
- name: Conclude Check
2142
2142
uses: LouisBrunner/checks-action@v1.6.0
2143
2143
if: steps.create-check.outputs.check-id && always()
@@ -2206,7 +2206,7 @@ jobs:
2206
2206
- name: Add Problem Matcher
2207
2207
run: echo "::add-matcher::.github/matchers/tap.json"
2208
2208
- name: Test
2209
- run: npm test --ignore-scripts -ws -iwr --if-present
2209
+ run: npm test --ignore-scripts --workspaces --include-workspace-root --if-present
2210
2210
- name: Conclude Check
2211
2211
uses: LouisBrunner/checks-action@v1.6.0
2212
2212
if: steps.create-check.outputs.check-id && always()
@@ -2430,7 +2430,7 @@ jobs:
2430
2430
else
2431
2431
# strip leading slash from directory so it works as a
2432
2432
# a path to the workspace flag
2433
- echo "workspace=-w \${dependabot_dir#/}" >> $GITHUB_OUTPUT
2433
+ echo "workspace=--workspace \${dependabot_dir#/}" >> $GITHUB_OUTPUT
2434
2434
fi
2435
2435
2436
2436
- name: Apply Changes
@@ -2771,7 +2771,7 @@ jobs:
2771
2771
- name: Run Post Pull Request Actions
2772
2772
env:
2773
2773
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 }}"
2775
2775
- name: Commit
2776
2776
id: commit
2777
2777
env:
@@ -3068,8 +3068,8 @@ package.json
3068
3068
"snap": "tap",
3069
3069
"test": "tap",
3070
3070
"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"
3073
3073
},
3074
3074
"author": "GitHub Inc.",
3075
3075
"files": [
@@ -3607,9 +3607,9 @@ jobs:
3607
3607
- name: Install Dependencies
3608
3608
run: npm i --ignore-scripts --no-audit --no-fund
3609
3609
- name: Lint
3610
- run: npm run lint --ignore-scripts -w a
3610
+ run: npm run lint --ignore-scripts --workspace a
3611
3611
- name: Post Lint
3612
- run: npm run postlint --ignore-scripts -w a
3612
+ run: npm run postlint --ignore-scripts --workspace a
3613
3613
3614
3614
test:
3615
3615
name: Test - \${{ matrix.platform.name }} - \${{ matrix.node-version }}
@@ -3661,7 +3661,7 @@ jobs:
3661
3661
- name: Add Problem Matcher
3662
3662
run: echo "::add-matcher::.github/matchers/tap.json"
3663
3663
- name: Test
3664
- run: npm test --ignore-scripts -w a
3664
+ run: npm test --ignore-scripts --workspace a
3665
3665
3666
3666
.github/workflows/ci-b.yml
3667
3667
========================================
@@ -3716,9 +3716,9 @@ jobs:
3716
3716
- name: Install Dependencies
3717
3717
run: npm i --ignore-scripts --no-audit --no-fund
3718
3718
- name: Lint
3719
- run: npm run lint --ignore-scripts -w b
3719
+ run: npm run lint --ignore-scripts --workspace b
3720
3720
- name: Post Lint
3721
- run: npm run postlint --ignore-scripts -w b
3721
+ run: npm run postlint --ignore-scripts --workspace b
3722
3722
3723
3723
test:
3724
3724
name: Test - \${{ matrix.platform.name }} - \${{ matrix.node-version }}
@@ -3770,7 +3770,7 @@ jobs:
3770
3770
- name: Add Problem Matcher
3771
3771
run: echo "::add-matcher::.github/matchers/tap.json"
3772
3772
- name: Test
3773
- run: npm test --ignore-scripts -w b
3773
+ run: npm test --ignore-scripts --workspace b
3774
3774
3775
3775
.github/workflows/ci-release.yml
3776
3776
========================================
@@ -3836,9 +3836,9 @@ jobs:
3836
3836
- name: Install Dependencies
3837
3837
run: npm i --ignore-scripts --no-audit --no-fund
3838
3838
- 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
3840
3840
- 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
3842
3842
- name: Conclude Check
3843
3843
uses: LouisBrunner/checks-action@v1.6.0
3844
3844
if: steps.create-check.outputs.check-id && always()
@@ -3907,7 +3907,7 @@ jobs:
3907
3907
- name: Add Problem Matcher
3908
3908
run: echo "::add-matcher::.github/matchers/tap.json"
3909
3909
- name: Test
3910
- run: npm test --ignore-scripts -ws -iwr --if-present
3910
+ run: npm test --ignore-scripts --workspaces --include-workspace-root --if-present
3911
3911
- name: Conclude Check
3912
3912
uses: LouisBrunner/checks-action@v1.6.0
3913
3913
if: steps.create-check.outputs.check-id && always()
@@ -3974,7 +3974,7 @@ jobs:
3974
3974
else
3975
3975
# strip leading slash from directory so it works as a
3976
3976
# a path to the workspace flag
3977
- echo "workspace=-w \${dependabot_dir#/}" >> $GITHUB_OUTPUT
3977
+ echo "workspace=--workspace \${dependabot_dir#/}" >> $GITHUB_OUTPUT
3978
3978
fi
3979
3979
3980
3980
- name: Apply Changes
@@ -4315,7 +4315,7 @@ jobs:
4315
4315
- name: Run Post Pull Request Actions
4316
4316
env:
4317
4317
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 }}"
4319
4319
- name: Commit
4320
4320
id: commit
4321
4321
env:
0 commit comments