platform/packages/graphql/travis.sh

6 lines
287 B
Bash
Raw Normal View History

2018-08-02 12:48:53 +00:00
#!/usr/bin/env bash
PWD=$(pwd)
cd "$PWD/graphql_parser" && pub get && pub run test -j2 && cd ..
cd "$PWD/graphql_schema" && pub get && pub run test -j2 && cd ..
2019-04-19 03:20:41 +00:00
cd "$PWD/graphql_server" && pub get && pub run test -j2 && cd ..
cd "$PWD/data_loader" && pub get && pub run test -j2 && cd ..