wisemapping-frontend/bitbucket-pipelines.yml
2021-02-16 23:03:06 -05:00

20 lines
424 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
- yarn lint