We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6c40a5 commit 210569cCopy full SHA for 210569c
.github/workflows/build.yml
@@ -48,14 +48,22 @@ jobs:
48
- name: Install dependencies
49
run: python -m pip install -U "jupyterlab>=4.0.0,<5"
50
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
+
59
- name: Build the extension
60
run: |
61
set -eux
62
python -m pip install .[test]
63
64
jupyter labextension list
65
jupyter labextension list 2>&1 | grep -ie "jupytereverywhere.*OK"
- python -m jupyterlab.browser_check
66
+ JLAB_BROWSER_TYPE=firefox python -m jupyterlab.browser_check
67
68
- name: Package the extension
69
0 commit comments