diff --git a/.drone.yml b/.drone.yml index 0a5f42a..6cc56aa 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,6 +9,7 @@ steps: commands: - git clone $DRONE_REMOTE_URL . - git checkout $DRONE_SOURCE_BRANCH + - mv .env.ci .env - name: run tests image: node:alpine commands: diff --git a/.env.ci b/.env.ci new file mode 100644 index 0000000..6103f14 --- /dev/null +++ b/.env.ci @@ -0,0 +1,8 @@ +APP_PORT=4010 +DB_TYPE=sqlite +DB_HOST=unused +DB_PORT=unused +DB_USER=unused +DB_PASSWORD=bla +DB_NAME=./test.sqlite +NODE_ENV=production \ No newline at end of file