wisemapping-frontend/bitbucket-pipelines.yml
Paulo Gustavo Veiga ea9660e34d Fix pipeline
2020-11-29 14:42:09 -08:00

24 lines
531 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.
image: node:10.15.3
pipelines:
default:
- parallel:
- step:
name: Build and Test
caches:
- node
script:
- npm install
- step:
name: Code linting
script:
- npm install eslint
- npx eslint .
caches:
- node