We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36086fb commit 3a588c0Copy full SHA for 3a588c0
.travis.yml
@@ -0,0 +1,16 @@
1
+language: node_js
2
+node_js:
3
+ - "stable"
4
+
5
+install:
6
+ - npm install -g truffle
7
+ - npm install -g ganache-cli
8
9
+cache:
10
+ directories:
11
+ # Replace "grunt-cli" with whatever global binary you're using
12
+ - $(npm config get prefix)/bin/truffle
13
+ - $(npm config get prefix)/bin/ganache-cli
14
15
+script:
16
+ - ./run-test.sh
run-test.sh
@@ -1,5 +1,6 @@
#!/usr/bin/env bash
+cd `dirname "$0"`
ganache-cli -p 7545 > /dev/null & pid=$!
if ps -p $pid > /dev/null
then
0 commit comments