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 d6d56fc commit f37e3e0Copy full SHA for f37e3e0
.github/workflows/build.yml
@@ -17,13 +17,21 @@ jobs:
17
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
18
19
- name: Install dependencies
20
- run: python -m pip install -U 'jupyterlab>=4.0.0,<5'
+ run: python -m pip install -U 'jupyterlab>=4.0.0,<5' && python -m pip install -U 'notebook>=7,<8'
21
22
- name: Build the extension
23
run: |
24
set -eux
25
jlpm
26
jlpm run eslint:check
27
+ cd ./components
28
+ npm install
29
+ npm run build
30
+ cd ..
31
+ cd ./nbextension
32
33
34
35
python -m pip install .
36
37
jupyter labextension list 2>&1 | grep -ie "lc_notebook_diff.*OK"
0 commit comments