20 lines
378 B
YAML
20 lines
378 B
YAML
language: node_js
|
|
os:
|
|
- linux
|
|
- osx
|
|
node_js:
|
|
- "10"
|
|
before_install:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.3
|
|
- export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
|
|
cache:
|
|
yarn: true
|
|
env:
|
|
- EMBARK_NO_PREPARE=true
|
|
install:
|
|
- yarn install
|
|
script:
|
|
- yarn lint
|
|
- yarn test:unit
|
|
- yarn test:contracts
|