Merge branch 'master' of bitbucket.org:wisemapping/wisemapping-react

This commit is contained in:
Paulo Gustavo Veiga 2020-11-26 19:03:53 -08:00
commit e49de0c633

24
bitbucket-pipelines.yml Normal file
View File

@ -0,0 +1,24 @@
# 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
- npm test
- step:
name: Code linting
script:
- npm install eslint
- npx eslint .
caches:
- node