mirror of
https://github.com/ilyakooo0/purescript-spec-mocha.git
synced 2024-11-25 07:24:02 +03:00
20 lines
466 B
YAML
20 lines
466 B
YAML
language: node_js
|
|
sudo: false
|
|
node_js:
|
|
- 10
|
|
env:
|
|
- PATH=$HOME/purescript:$PATH
|
|
install:
|
|
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/v0.13.0/linux64.tar.gz
|
|
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
|
|
- chmod a+x $HOME/purescript
|
|
- npm install -g bower pulp mocha
|
|
- bower install
|
|
script:
|
|
- travis_wait 30 pulp build
|
|
- travis_wait sh $TRAVIS_BUILD_DIR/run_tests.sh
|
|
|
|
cache:
|
|
directories:
|
|
- output
|