Skip to content

Commit 094d5c2

Browse files
committed
chore: template-oss apply fix
1 parent e1131c2 commit 094d5c2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci-cli.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ jobs:
4848
- name: Install Dependencies
4949
run: npm i --no-audit --no-fund
5050
- name: Lint
51-
run: npm run lint --ignore-scripts -w cli
51+
run: npm run lint --ignore-scripts --workspace cli
5252
- name: Post Lint
53-
run: npm run postlint --ignore-scripts -w cli
53+
run: npm run postlint --ignore-scripts --workspace cli
5454
- name: Check Format
55-
run: npm run format:check --ignore-scripts --if-present -w cli
55+
run: npm run format:check --ignore-scripts --if-present --workspace cli
5656

5757
test:
5858
name: Test - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
@@ -93,4 +93,4 @@ jobs:
9393
- name: Add Problem Matcher
9494
run: echo "::add-matcher::.github/matchers/tap.json"
9595
- name: Test
96-
run: npm test --ignore-scripts -w cli
96+
run: npm test --ignore-scripts --workspace cli

.github/workflows/post-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
else
5656
# strip leading slash from directory so it works as a
5757
# a path to the workspace flag
58-
echo "workspace=-w ${dependabot_dir#/}" >> $GITHUB_OUTPUT
58+
echo "workspace=--workspace ${dependabot_dir#/}" >> $GITHUB_OUTPUT
5959
fi
6060
6161
- name: Apply Changes

0 commit comments

Comments
 (0)