mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-24 22:25:48 +00:00
Disable flow type checking in CircleCI
This commit is contained in:
@@ -6,7 +6,6 @@ machine:
|
|||||||
dependencies:
|
dependencies:
|
||||||
pre:
|
pre:
|
||||||
- npm -g install npm@latest-2
|
- npm -g install npm@latest-2
|
||||||
- npm install flow-bin
|
|
||||||
- wget https://s3-us-west-2.amazonaws.com/ripple-debs/rippled_0.30.1-b11-1.deb
|
- wget https://s3-us-west-2.amazonaws.com/ripple-debs/rippled_0.30.1-b11-1.deb
|
||||||
- sudo dpkg -i rippled_0.30.1-b11-1.deb
|
- sudo dpkg -i rippled_0.30.1-b11-1.deb
|
||||||
test:
|
test:
|
||||||
|
|||||||
@@ -46,7 +46,6 @@
|
|||||||
"ejs": "^2.3.4",
|
"ejs": "^2.3.4",
|
||||||
"eslint": "^2.9.0",
|
"eslint": "^2.9.0",
|
||||||
"eventemitter2": "^0.4.14",
|
"eventemitter2": "^0.4.14",
|
||||||
"flow-bin": "^0.32.0",
|
|
||||||
"gulp": "^3.8.10",
|
"gulp": "^3.8.10",
|
||||||
"gulp-bump": "^0.1.13",
|
"gulp-bump": "^0.1.13",
|
||||||
"gulp-rename": "^1.2.0",
|
"gulp-rename": "^1.2.0",
|
||||||
|
|||||||
@@ -76,7 +76,6 @@ oneNode() {
|
|||||||
checkEOL
|
checkEOL
|
||||||
doctest
|
doctest
|
||||||
lint
|
lint
|
||||||
typecheck
|
|
||||||
unittest
|
unittest
|
||||||
integrationtest
|
integrationtest
|
||||||
}
|
}
|
||||||
@@ -84,7 +83,7 @@ oneNode() {
|
|||||||
twoNodes() {
|
twoNodes() {
|
||||||
case "$NODE_INDEX" in
|
case "$NODE_INDEX" in
|
||||||
0) doctest; lint; integrationtest;;
|
0) doctest; lint; integrationtest;;
|
||||||
1) checkEOL; typecheck; unittest;;
|
1) checkEOL; unittest;;
|
||||||
*) echo "ERROR: invalid usage"; exit 2;;
|
*) echo "ERROR: invalid usage"; exit 2;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
@@ -92,7 +91,7 @@ twoNodes() {
|
|||||||
threeNodes() {
|
threeNodes() {
|
||||||
case "$NODE_INDEX" in
|
case "$NODE_INDEX" in
|
||||||
0) doctest; lint; integrationtest;;
|
0) doctest; lint; integrationtest;;
|
||||||
1) checkEOL; typecheck;;
|
1) checkEOL;;
|
||||||
2) unittest;;
|
2) unittest;;
|
||||||
*) echo "ERROR: invalid usage"; exit 2;;
|
*) echo "ERROR: invalid usage"; exit 2;;
|
||||||
esac
|
esac
|
||||||
|
|||||||
Reference in New Issue
Block a user