mirror of
https://github.com/romancm/gamebrary
synced 2024-11-13 23:17:08 +00:00
20 lines
487 B
YAML
20 lines
487 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/node:10.22.0-browsers
|
|
steps:
|
|
- checkout
|
|
- run: yarn install --pure-lockfile --no-progress --non-interactive
|
|
- run:
|
|
name: "Lint"
|
|
command: |
|
|
echo "Running linter"
|
|
git config --global user.email "circleci@gamebrary.com"
|
|
git config --global user.name "gamebrary"
|
|
yarn lint
|
|
workflows:
|
|
version: 2
|
|
build_and_test:
|
|
jobs:
|
|
- build
|