File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,11 @@ language: go
1919
2020before_install :
2121# Install javascript libraries
22- - pushd $TRAVIS_BUILD_DIR/functions; npm install --verbose; popd
23- - pushd $TRAVIS_BUILD_DIR/functions/embargo; npm install --verbose; popd
22+ - pushd $TRAVIS_BUILD_DIR/functions
23+ - npm install --verbose
24+ - pushd embargo
25+ - npm install --verbose
26+ - popd; popd
2427
2528# Coverage tools
2629- go get github.com/mattn/goveralls
@@ -48,8 +51,11 @@ cache:
4851
4952script :
5053# Run all javascript tests.
51- - pushd $TRAVIS_BUILD_DIR/functions; npm test; popd
52- - pushd $TRAVIS_BUILD_DIR/functions/embargo; npm test; popd
54+ - pushd $TRAVIS_BUILD_DIR/functions
55+ - npm test
56+ - pushd embargo
57+ - npm test
58+ - popd; popd
5359
5460# To start the Go tests, run all the non-integration tests.
5561# Currently skipping storage tests, because they depend on GCS, and there is
You can’t perform that action at this time.
0 commit comments