Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. sudo: false
  2.  
  3. language: node_js
  4.  
  5. node_js:
  6. - 10
  7. addons:
  8. apt:
  9. packages:
  10. # Ubuntu 16+ does not install this dependency by default, so we need to install it ourselves
  11. - libgconf-2-4
  12. cache:
  13. # Caches $HOME/.npm when npm ci is default script command
  14. # Caches node_modules in all other cases
  15. npm: true
  16. directories:
  17. - node_modules
  18. install:
  19. - npm install
  20. script:
  21. - $(npm bin)/cypress run
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement