-
Notifications
You must be signed in to change notification settings - Fork 102
35 lines (28 loc) · 980 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- 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 jupyterlab~=3.0
- name: Install the extension
run: |
python -m pip install .
- name: Check the server, classic and lab extensions are installed
run: |
jupyter serverextension list 2>&1 | grep -ie "jupyter_resource_usage.*enabled"
jupyter server extension list 2>&1 | grep -ie "jupyter_resource_usage.*enabled"
jupyter nbextension list 2>&1 | grep -ie "jupyter_resource_usage/main.*enabled"
jupyter labextension list 2>&1 | grep -ie "@jupyter-server/resource-usage.*OK"
python -m jupyterlab.browser_check