mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-20 07:26:46 +00:00
* Removed package-lock.json form gitignore as it ensures specific package versions * Updated all @angular web dependencies * Resolved tslint errors using autofix option * Resolved some more tslint issues * Added lint scripts to package.json to easy lint the ts files * Updated codelyzer and tslint * Run web on travis using node 10 and run the lint task * Resolved some more tslint issues after upgrading tslint and codelyzer * Resolved golint issues with regards to exchange comments * Resolved spelling errors shown by goreportcard.com * Resolved gofmt warnings using goreportcard.com * Resolved golint issue by removing unrequired else statement * Refactored slack.go to reduce cyclomatic complexity * Fixed govet issue where Slack was passed as value instead of reference
32 lines
736 B
YAML
32 lines
736 B
YAML
matrix:
|
|
include:
|
|
- language: node_js
|
|
node_js:
|
|
- '10'
|
|
- '8'
|
|
- '6'
|
|
before_install:
|
|
- cd web/
|
|
install:
|
|
- npm install
|
|
script:
|
|
- npm run lint
|
|
- npm run build
|
|
|
|
- language: go
|
|
go:
|
|
- 1.10.x
|
|
before_install:
|
|
- go get -t -v ./...
|
|
script:
|
|
- ./testdata/test.sh
|
|
install:
|
|
- go get github.com/gorilla/websocket
|
|
- go get github.com/toorop/go-pusher
|
|
- go get github.com/thrasher-/socketio
|
|
- go get github.com/beatgammit/turnpike
|
|
- go get github.com/gorilla/mux
|
|
- go get golang.org/x/crypto/scrypt
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|