UNPKG

500 BYAMLView Raw
1language: node_js
2node_js:
3 - '6'
4sudo: false
5script:
6 - "npm test"
7after_success:
8 - './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'
9services:
10 - mysql
11before_install:
12 - mysql -e '
13 CREATE DATABASE think_test;
14 USE think_test;
15 CREATE TABLE `think_test`.`books` (
16 `id` int NOT NULL AUTO_INCREMENT,
17 `name` varchar(255) NOT NULL DEFAULT "",
18 `author` varchar(255) NOT NULL DEFAULT "",
19 PRIMARY KEY (`id`)
20 );'
21