anchor/.travis.yml

27 lines
461 B
YAML
Raw Normal View History

2021-01-06 11:52:09 -08:00
language: rust
rust:
- stable
cache: cargo
env:
- NODE_VERSION="14.7.0"
_defaults: &defaults
before_install:
- rustup component add rustfmt
- nvm install $NODE_VERSION
jobs:
include:
- <<: *defaults
name: Build and Test Rust
script:
- cargo build
- cargo fmt -- --check
- cargo test
- <<: *defaults
name: Build and Test TypeScript
script:
- cd ts
- yarn
- yarn build