wasm-bindgen/.travis.yml
Alex Crichton 353794417c Don't run npm install during tests
Instead add a `package.json` and use `yarn run`.
2018-03-02 15:44:28 -08:00

23 lines
391 B
YAML

language: rust
sudo: false
matrix:
include:
- rust: nightly
install:
- curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
- source ~/.nvm/nvm.sh
- nvm install 9
- yarn
script:
- rustup target add wasm32-unknown-unknown
- cargo test
- cargo install --debug --path crates/wasm-bindgen-cli
notifications:
email:
on_success: never