mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-05-30 07:41:07 +00:00
5b7f1ecbbb
* 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
37 lines
583 B
YAML
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
|