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

Commit 8ebd3db

Browse files
committed
Add ci
1 parent ef39507 commit 8ebd3db

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/workflows/main.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: '*'
6+
schedule:
7+
- cron: '0 0 1 * *'
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v1
17+
- name: Install node
18+
uses: actions/setup-node@v1
19+
with:
20+
node-version: '10.x'
21+
- name: Install Python
22+
uses: actions/setup-python@v1
23+
with:
24+
python-version: '3.7'
25+
architecture: 'x64'
26+
- name: Install dependencies
27+
run: |
28+
python -m pip install jupyterlab
29+
- name: Run tests
30+
run: |
31+
jlpm && jlpm run build
32+
jupyter labextension install .
33+
python -m jupyterlab.browser_check
34+
35+
jupyter lab clean
36+
37+
jupyter labextension link .
38+
python -m jupyterlab.browser_check

0 commit comments

Comments
 (0)