wisemapping-frontend/bitbucket-pipelines.yml

20 lines
424 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
image: node:14.15.5
pipelines:
default:
- parallel:
- step:
name: Build and Test
caches:
- node
script:
2021-02-16 00:50:52 +01:00
- yarn install
2021-02-03 19:13:12 +01:00
- yarn build
2021-02-17 05:03:06 +01:00
- yarn lint