|
20 | 20 | uses: actions/checkout@v4 |
21 | 21 | with: |
22 | 22 | fetch-depth: 0 |
23 | | - submodules: recursive |
| 23 | + |
| 24 | + - name: Init required submodules |
| 25 | + run: | |
| 26 | + git submodule update --init --depth 1 external/vscode-test-playwright |
24 | 27 |
|
25 | 28 | - name: Setup Node.js |
26 | 29 | uses: actions/setup-node@v4 |
@@ -118,8 +121,10 @@ jobs: |
118 | 121 | steps: |
119 | 122 | - name: Checkout repository |
120 | 123 | uses: actions/checkout@v4 |
121 | | - with: |
122 | | - submodules: recursive |
| 124 | + |
| 125 | + - name: Init required submodules |
| 126 | + run: | |
| 127 | + git submodule update --init --depth 1 external/vscode-test-playwright |
123 | 128 |
|
124 | 129 | - name: Setup Node.js ${{ matrix.node-version }} |
125 | 130 | uses: actions/setup-node@v4 |
@@ -165,7 +170,10 @@ jobs: |
165 | 170 | uses: actions/checkout@v4 |
166 | 171 | with: |
167 | 172 | fetch-depth: 0 |
168 | | - submodules: recursive |
| 173 | + |
| 174 | + - name: Init required submodules |
| 175 | + run: | |
| 176 | + git submodule update --init --depth 1 external/vscode-test-playwright |
169 | 177 |
|
170 | 178 | - name: Setup Node.js |
171 | 179 | uses: actions/setup-node@v4 |
@@ -249,6 +257,10 @@ jobs: |
249 | 257 | COMMITS: ${{ steps.context.outputs.commits }} |
250 | 258 | STATS: ${{ steps.context.outputs.stats }} |
251 | 259 |
|
| 260 | + - name: Init demo video submodule |
| 261 | + run: | |
| 262 | + git submodule update --init --depth 1 external/playwright-test-videos |
| 263 | +
|
252 | 264 | - name: Update README demo video |
253 | 265 | shell: bash |
254 | 266 | run: | |
@@ -284,8 +296,10 @@ jobs: |
284 | 296 | steps: |
285 | 297 | - name: Checkout repository |
286 | 298 | uses: actions/checkout@v4 |
287 | | - with: |
288 | | - submodules: recursive |
| 299 | + |
| 300 | + - name: Init required submodules |
| 301 | + run: | |
| 302 | + git submodule update --init --depth 1 external/vscode-test-playwright |
289 | 303 |
|
290 | 304 | - name: Setup Node.js |
291 | 305 | uses: actions/setup-node@v4 |
@@ -320,8 +334,10 @@ jobs: |
320 | 334 | steps: |
321 | 335 | - name: Checkout repository |
322 | 336 | uses: actions/checkout@v4 |
323 | | - with: |
324 | | - submodules: recursive |
| 337 | + |
| 338 | + - name: Init required submodules |
| 339 | + run: | |
| 340 | + git submodule update --init --depth 1 external/vscode-test-playwright |
325 | 341 |
|
326 | 342 | - name: Setup Node.js |
327 | 343 | uses: actions/setup-node@v4 |
|
0 commit comments