wisemapping-frontend/bitbucket-pipelines.yml
2021-02-16 23:01:33 -05:00

19 lines
398 B
YAML

# Template NodeJS build
# This template allows you to validate your NodeJS code.
# The workflow allows running tests and code linting on the default branch.
# Node LTS
image: node:14.15.5
pipelines:
default:
- parallel:
- step:
name: Build and Test
caches:
- node
script:
- yarn install
- yarn build