20 lines
219 B
YAML
20 lines
219 B
YAML
---
|
|
language: node_js
|
|
node_js:
|
|
- "lts/*"
|
|
|
|
sudo: false
|
|
dist: xenial
|
|
|
|
install:
|
|
- npm install
|
|
|
|
script:
|
|
- npm run lint:wrapper
|
|
- npm run lint:contract-tests
|
|
# - yarn lint:contracts
|
|
|
|
branches:
|
|
only:
|
|
- master
|