Skip to content
This repository was archived by the owner on Feb 3, 2023. It is now read-only.

Commit 10f9d9c

Browse files
committed
Add github action
1 parent 776a6d2 commit 10f9d9c

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/main.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,20 @@ jobs:
1414
- name: Install node
1515
uses: actions/setup-node@v1
1616
with:
17-
node-version: "10.x"
17+
node-version: "12.x"
18+
- name: Install Python
19+
uses: actions/setup-python@v1
20+
with:
21+
python-version: "3.7"
22+
architecture: "x64"
23+
- name: Install dependencies
24+
run: python -m pip install jupyterlab
25+
- name: Build the extension
26+
run: |
27+
jlpm
28+
cd test-jlab-toastify
29+
jlpm remove jupyterlab_toastify
30+
jlpm add file:${PWD}/..
31+
jlpm build
32+
jupyter labextension install .
33+
python -m jupyterlab.browser_check

0 commit comments

Comments
 (0)