Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. image: node
  2.  
  3. stages:
  4. - test
  5.  
  6. test_project:
  7. stage: test
  8.  
  9. services:
  10. - postgres:9.6
  11.  
  12. variables:
  13. POSTGRES_DB: test
  14. POSTGRES_USER: user
  15. POSTGRES_PASSWORD: ""
  16. # Configure app
  17. DATABASE_CONNECTION_STRING: "postgres://user@postgres/test"
  18.  
  19. script:
  20. - echo "====== Install dependencied ======"
  21. - npm i
  22. - echo "====== Migrate database ======"
  23. - npm run migrate
  24. - echo "====== Run test ======"
  25. - npm test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement