Merge pull request #33 from yacchin1205/feature/update-scipy-notebook… #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| push: | |
| branches: main | |
| pull_request: | |
| branches: '*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Base Setup | |
| uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
| - name: Install dependencies | |
| 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" | |
| python -m jupyterlab.browser_check | |
| jlpm install | |
| cd ./ui-tests | |
| jlpm install | |
| jlpm playwright install | |
| jlpm playwright test | |
| cd .. | |
| pip install build | |
| python -m build --sdist | |
| cp dist/*.tar.gz myextension.tar.gz | |
| pip uninstall -y "lc_notebook_diff" jupyterlab | |
| rm -rf myextension | |
| npm pack | |
| mv lc_notebook_diff-*.tgz myextension-nodejs.tgz | |
| - uses: actions/upload-artifact@v4 | |
| if: ${{ !cancelled() }} | |
| with: | |
| name: playwright-report | |
| path: ui-tests/playwright-report/ | |
| retention-days: 30 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: myextension-sdist | |
| path: myextension.tar.gz | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: myextension-nodejs | |
| path: myextension-nodejs.tgz | |
| test_isolated: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Install Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.9' | |
| architecture: 'x64' | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: myextension-sdist | |
| - name: Install and Test | |
| run: | | |
| set -eux | |
| # Remove NodeJS, twice to take care of system and locally installed node versions. | |
| sudo rm -rf $(which node) | |
| sudo rm -rf $(which node) | |
| pip install myextension.tar.gz | |
| pip install jupyterlab | |
| jupyter labextension list 2>&1 | grep -ie "lc_notebook_diff.*OK" | |
| python -m jupyterlab.browser_check --no-chrome-test |