From f37e3e04fafedaf91c1b1f1dec360fe9516eda0f Mon Sep 17 00:00:00 2001 From: yacchin1205 <968739+yacchin1205@users.noreply.github.com> Date: Tue, 12 Nov 2024 10:20:17 +0900 Subject: [PATCH] Fix build scripts --- .github/workflows/build.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b9fb255..50e2a42 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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"