Commit 8c13b52 1 parent 7fb5223 commit 8c13b52 Copy full SHA for 8c13b52
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ general:
5
5
dependencies :
6
6
pre :
7
7
- node ./scripts/assertMinCircleNodes.js $CIRCLE_NODE_TOTAL
8
- - case $CIRCLE_NODE_INDEX in 0) nvm use 4.1.2 ;; 1) nvm use 5.7 ;; [2-3 ]) nvm use 6.1 ;; esac
8
+ - case $CIRCLE_NODE_INDEX in 0) nvm use 4.1.2 ;; 1) nvm use 5.7 ;; [2-4 ]) nvm use 6.1 ;; esac
9
9
override :
10
10
- yarn
11
11
test :
12
12
override :
13
- -
case $CIRCLE_NODE_INDEX in [0-2]) yarn verify ;; 3) npm run clean && yarn compile && yarn add [email protected] && yarn test ;; esac :
13
+ -
case $CIRCLE_NODE_INDEX in [0-2]) yarn verify ;; 3) npm run clean && yarn compile && yarn add [email protected] && yarn test ;; 4) npm run clean && yarn compile && yarn add typescript@next && yarn test ;; esac :
14
14
parallel : true
15
15
deployment :
16
16
npm-latest :
Original file line number Diff line number Diff line change 1
- var requiredNodes = 4 ;
1
+ var requiredNodes = 5 ;
2
2
var nodes = parseInt ( process . argv [ 2 ] , 10 ) ;
3
3
if ( requiredNodes != null && requiredNodes > nodes ) {
4
- console . error ( "ERROR: You must run CircleCI with 4 parallel nodes" ) ;
4
+ console . error ( "ERROR: You must run CircleCI with " + requiredNodes + " parallel nodes") ;
5
5
console . error ( " This ensures that different environments are tested for TSLint compatibility" ) ;
6
6
console . error ( " https://circleci.com/gh/<YOUR ACCOUNT>/tslint/edit#parallel-builds" ) ;
7
7
process . exit ( 1 ) ;
You can’t perform that action at this time.
0 commit comments