gamebrary/.circleci/config.yml
Roman Cervantes c207a7c5e7 test
2019-05-21 15:24:16 -07:00

20 lines
479 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/node:8.11.3-browsers
steps:
- checkout
- run: yarn install --pure-lockfile --no-progress --non-interactive
- run:
name: "Lint"
command: |
echo "Running linter"
git config --global user.email "romancm@gmail.com"
git config --global user.name "romancm"
yarn lint
workflows:
version: 2
build_and_test:
jobs:
- build