Skip to content

Commit 210569c

Browse files
Try to make build faster (#49)
Co-authored-by: Agriya Khetarpal <[email protected]>
1 parent d6c40a5 commit 210569c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,22 @@ jobs:
4848
- name: Install dependencies
4949
run: python -m pip install -U "jupyterlab>=4.0.0,<5"
5050

51+
- name: Restore Playwright browsers cache
52+
uses: actions/cache@v4
53+
with:
54+
path: /home/runner/.cache/ms-playwright
55+
key: playwright-browsers-${{ runner.os }}-v1
56+
restore-keys: |
57+
playwright-browsers-${{ runner.os }}-
58+
5159
- name: Build the extension
5260
run: |
5361
set -eux
5462
python -m pip install .[test]
5563
5664
jupyter labextension list
5765
jupyter labextension list 2>&1 | grep -ie "jupytereverywhere.*OK"
58-
python -m jupyterlab.browser_check
66+
JLAB_BROWSER_TYPE=firefox python -m jupyterlab.browser_check
5967
6068
- name: Package the extension
6169
run: |

0 commit comments

Comments
 (0)