gamebrary/.circleci/config.yml

21 lines
479 B
YAML
Raw Normal View History

2019-05-21 15:24:16 -07:00
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
2019-05-21 15:13:17 -07:00
workflows:
2019-05-21 15:24:16 -07:00
version: 2
build_and_test:
2019-05-21 15:13:17 -07:00
jobs:
2019-05-21 15:24:16 -07:00
- build