File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
3
- " 7"
4
- before_install :
5
- - openssl aes-256-cbc -K $encrypted_001d217edcb2_key -iv $encrypted_001d217edcb2_iv -in service-account.json.enc -out service-account.json -d
6
4
install :
7
5
- npm install -g lerna
8
6
- npm install -g eslint
9
7
- lerna bootstrap
10
8
script :
11
- - ./scripts/test.sh
9
+ - ./scripts/test.sh
Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ find . -type f -name "*.js" -not -path "*node_modules*" \
25
25
if [ " $TRAVIS_SECURE_ENV_VARS " = false ]; then
26
26
echo " Could not find secure environment variables, skipping integration tests."
27
27
else
28
+ # Decode secure stuff
29
+ openssl aes-256-cbc -K $encrypted_001d217edcb2_key -iv $encrypted_001d217edcb2_iv -in service-account.json.enc -out service-account.json -d
30
+
28
31
# Run all tests
29
32
lerna run test
30
- fi
33
+ fi
You can’t perform that action at this time.
0 commit comments