Skip to content

Commit

Permalink
Install all extensions on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Mar 15, 2021
1 parent b0b6476 commit 92c700f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,13 @@ jobs:
${{ runner.os }}-pip-
- name: Install the Python dependencies
run: python -m pip install jupyter_packaging~=0.7.9 jupyterlab~=3.0 pytest pytest-check-links
- name: Bootstrap the jlpm deps
run: jlpm
- name: Bootstrap the dependencies
run: yarn
- name: Build all the extensions
run: |
jlpm build-ext
jlpm lint:check
jlpm install-ext
yarn install-py
yarn build-ext
yarn lint:check
yarn install-ext
# Check links as last step as new tutorial may set links not yet valid (like file not yet in master)
pytest --check-links
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jupyter lab --watch
From there, you can change your extension source code, it will be recompiled,
and you can refresh your browser to see your changes.

We are using [embedme](https://github.com/zakhenry/embedme) to embed code snippets into the markdown READMEs. If you make changes to the source code, ensure you update the README and run `jlpm embedme` from the root of the repository to regenerate the READMEs.
We are using [embedme](https://github.com/zakhenry/embedme) to embed code snippets into the markdown READMEs. If you make changes to the source code, ensure you update the README and run `yarn embedme` from the root of the repository to regenerate the READMEs.

## Install a Custom Jupyter Widget

Expand Down

0 comments on commit 92c700f

Please sign in to comment.