Skip to content

Commit 3e02635

Browse files
committed
Fix the still broken workflow
1 parent 81d8a5c commit 3e02635

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959

6060
- name: Run tsc for libraries
6161
if: needs.paths-filter.outputs.libraries == 'true'
62-
run: yarn workspaces foreach -ptW --from --include "./lib/*" run tsc
62+
run: yarn workspaces foreach -ptW --from "./lib/*" run tsc
6363

6464
- name: Run lint for libraries
6565
if: needs.paths-filter.outputs.libraries == 'true'
@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: Build, lint and run tsc for bundles and tabs
7373
if: needs.paths-filter.outputs.modules == 'true'
74-
run: yarn workspaces foreach -j 5 -ptW --from --include "./src/{bundles,tsc}/*" run build --tsc --lint
74+
run: yarn workspaces foreach -j 5 -ptW --from "./src/{bundles,tsc}/*" run build --tsc --lint
7575

7676
- name: Test bundles and tabs
7777
if: needs.paths-filter.outputs.modules == 'true'

0 commit comments

Comments
 (0)