wisemapping-frontend/bitbucket-pipelines.yml

26 lines
580 B
YAML
Raw Normal View History

# Template NodeJS build
# This template allows you to validate your NodeJS code.
# The workflow allows running tests and code linting on the default branch.
2021-02-17 05:01:33 +01:00
# Node LTS
2021-12-13 03:35:48 +01:00
image: cypress/base:16.13.0
pipelines:
default:
- parallel:
- step:
name: Build and test
caches:
- node
- npm
- cypress
script:
2021-02-16 00:50:52 +01:00
- yarn install
2021-02-03 19:13:12 +01:00
- yarn build
2021-10-05 01:56:40 +02:00
# - yarn lint
- yarn test
definitions:
caches:
npm: $HOME/.npm
cypress: $HOME/.cache/Cypress