We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8290aa commit 4c34a4dCopy full SHA for 4c34a4d
.travis.yml
@@ -1,16 +1,17 @@
1
language: node_js
2
node_js:
3
-- '5'
+- '12'
4
sudo: false
5
notifications:
6
email: false
7
before_install:
8
- - cd ..
9
- - git clone --depth=50 --branch=master https://github.com/jupyterlab/jupyterlab.git
10
- - cd jupyterlab
+ - wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O ~/miniconda.sh;
+ - bash ~/miniconda.sh -b -p $HOME/miniconda
+ - export PATH="$HOME/miniconda/bin:$PATH"
11
+ - pip install jupyterlab
12
install:
- - npm install --no-optional
13
- - npm run addsibling $TRAVIS_BUILD_DIR
14
- - npm run build
+ - jlpm install
+ - jlpm build
15
+ - jupyter labextension install .
16
script:
17
- echo "Build successful"
0 commit comments