1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

fix travis

This commit is contained in:
Jernej Pregelj 2019-03-07 14:54:30 +01:00
parent bbf7df087d
commit cd62912a6e
2 changed files with 13 additions and 0 deletions

12
.travis.sh Normal file
View File

@ -0,0 +1,12 @@
#/usr/bin/env/sh
set -e
components="server client"
for component in $components
do
echo "Testing: $component"
cd $component
npm install
npm test
cd ..
done

1
.travis.yml Normal file
View File

@ -0,0 +1 @@
script: "./testscript.sh"