-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.yml
31 lines (29 loc) · 857 Bytes
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright (C) 2018-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2018-present Sven Greb <[email protected]>
# Project: Styleguide JavaScript
# Repository: https://github.com/arcticicestudio/styleguide-javascript
# License: MIT
# References:
# https://circleci.com/docs/2.0
# https://circleci.com/docs/2.0/circleci-images/#nodejs
version: 2
jobs:
build:
docker:
- image: circleci/node:latest
steps:
- checkout
- run:
name: preprocess-clean-node-modules
command: rm -rf node_modules
- run:
name: preprocess-yarn-install
command: yarn install
- run:
name: lint
command: yarn lint
- run:
name: generate-docs
command: yarn docs:build
- store_artifacts:
path: build/docs