diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..9427be32 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: node_js + +node_js: + - node + - 10 + - 8 + +before_script: + - yarn build + +script: + - yarn test diff --git a/README.md b/README.md index 00f88e38..36491505 100644 --- a/README.md +++ b/README.md @@ -164,9 +164,6 @@ Setup and Teardown steps aren't always run within a single transaction. **You ne await db.transaction(async trx => { // Rollback and create all db objects using config. await synchronize(config, trx, { force: false }); - - // Perform other db operations - // ... }); ```