Skip to content

Commit f37e3e0

Browse files
committed
Fix build scripts
1 parent d6d56fc commit f37e3e0

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
@@ -17,13 +17,21 @@ jobs:
1717
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
1818

1919
- name: Install dependencies
20-
run: python -m pip install -U 'jupyterlab>=4.0.0,<5'
20+
run: python -m pip install -U 'jupyterlab>=4.0.0,<5' && python -m pip install -U 'notebook>=7,<8'
2121

2222
- name: Build the extension
2323
run: |
2424
set -eux
2525
jlpm
2626
jlpm run eslint:check
27+
cd ./components
28+
npm install
29+
npm run build
30+
cd ..
31+
cd ./nbextension
32+
npm install
33+
npm run build
34+
cd ..
2735
python -m pip install .
2836
2937
jupyter labextension list 2>&1 | grep -ie "lc_notebook_diff.*OK"

0 commit comments

Comments
 (0)