Skip to content

Commit 64f39e2

Browse files
committed
fix(ci): skip submodule in e2e job
We don't need the submodules for the e2e job. This will speed up the checkout step.
1 parent 2a89832 commit 64f39e2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,6 @@ jobs:
461461
uses: actions/checkout@v3
462462
with:
463463
fetch-depth: 0
464-
submodules: true
465464

466465
- name: Install Node.js v16
467466
uses: actions/setup-node@v3
@@ -491,7 +490,7 @@ jobs:
491490
492491
- name: Install dependencies
493492
if: steps.cache-yarn.outputs.cache-hit != 'true'
494-
run: yarn --frozen-lockfile
493+
run: SKIP_SUBMODULE_DEPS=1 yarn --frozen-lockfile
495494

496495
- name: Install Playwright OS dependencies
497496
run: |

0 commit comments

Comments
 (0)