2019-05-21 22:24:16 +00: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"
|
2019-05-21 22:28:43 +00:00
|
|
|
git config --global user.email "circleci@gamebrary.com"
|
|
|
|
git config --global user.name "gamebrary"
|
2019-05-21 22:24:16 +00:00
|
|
|
yarn lint
|
2019-05-21 22:13:17 +00:00
|
|
|
workflows:
|
2019-05-21 22:24:16 +00:00
|
|
|
version: 2
|
|
|
|
build_and_test:
|
2019-05-21 22:13:17 +00:00
|
|
|
jobs:
|
2019-05-21 22:24:16 +00:00
|
|
|
- build
|