Untitled
unknown
plain_text
4 years ago
672 B
8
Indexable
# This is a sample build configuration for JavaScript.
# Check our guides at https://confluence.atlassian.com/x/14UWN for more examples.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
image: node:10.15.3
options:
max-time: 60
pipelines:
default:
- step:
name: E2E tests
caches:
- npm
- cypress
image: cypress/base:10
script:
- npm i
- npm run cypress:run-prod
artifacts:
- cypress/videos/**/*.mp4
definitions:
caches:
npm: $HOME/.npm
cypress: $HOME/.cache/Cypress
Editor is loading...