Files
pezkuwi-telemetry/.travis.yml
T
Chevdor 5b7f1ecbbb Fix the issues preventing to build (#257)
* Lock deps to fix build issues

* Upgrade some of the deps

* Upgrade to the latest polkadot util-crypto and stop reporting issues on the libs

* Remove buggy 'yarn check' and add prettifier check
2020-04-23 19:00:05 +02:00

37 lines
583 B
YAML

language: rust
cache:
cargo: true
rust:
- stable
- beta
- nightly
env:
global:
- CLIPPY_TOOLCHAIN=nightly
matrix:
allow_failures:
- rust: nightly
os:
- linux
before_install:
- source $HOME/.nvm/nvm.sh
- nvm install --lts
- nvm use --lts
before_script:
- if [ $TRAVIS_RUST_VERSION = $CLIPPY_TOOLCHAIN ]; then rustup component add clippy-preview --toolchain=$CLIPPY_TOOLCHAIN; fi
- curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -f
script:
- cd frontend
- yarn
- yarn pretty:check
- yarn test
- yarn build