Skip to content

Commit

Permalink
Fix build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
yacchin1205 committed Nov 12, 2024
1 parent d6d56fc commit f37e3e0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,21 @@ jobs:
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

- name: Install dependencies
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'

- name: Build the extension
run: |
set -eux
jlpm
jlpm run eslint:check
cd ./components
npm install
npm run build
cd ..
cd ./nbextension
npm install
npm run build
cd ..
python -m pip install .
jupyter labextension list 2>&1 | grep -ie "lc_notebook_diff.*OK"
Expand Down

0 comments on commit f37e3e0

Please sign in to comment.