Fix ci yaml file

This commit is contained in:
Timothy Warren 2017-02-28 16:14:17 -05:00
parent a5eb0795c9
commit 7edb5f1df0
2 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,7 @@ before_script:
services:
- mariadb:latest
- postgres: alpine
- postgres:alpine
variables:
MYSQL_ROOT_PASSWORD: foo-bar-baz
@ -24,8 +24,8 @@ cache:
test:6:
image: node:6-alpine
script: npm run test
script: yarn run test
test:latest:
image: node:alpine
script: npm run test
script: yarn run test

View File

@ -11,6 +11,7 @@ set -xe
# Install sqlite3
echo -e 'http://dl-cdn.alpinelinux.org/alpine/edge/main\nhttp://dl-cdn.alpinelinux.org/alpine/edge/community\nhttp://dl-cdn.alpinelinux.org/alpine/edge/testing' > /etc/apk/repositories
apk add --no-cache git yarn sqlite3 libsqlite3
npm install pg sqlite3 dblite mysql2
# Replace test config with docker config file
mv "$DIR/config-ci.json" "$DIR/config.json"