Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run bootstrap before linting on CI #1698

Closed
wants to merge 39 commits into from
Closed
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
77a2c18
Run bootstrap before linting on CI
Hypnosphi Aug 21, 2017
4e468d1
Merge branch 'master' into ci-bootstrap-lint
Hypnosphi Aug 21, 2017
7b624b1
Merge branch 'master' into ci-bootstrap-lint
Hypnosphi Aug 21, 2017
53f7463
Merge branch 'master' into ci-bootstrap-lint
Hypnosphi Aug 22, 2017
b172d24
Merge branch 'master' into ci-bootstrap-lint
Hypnosphi Aug 22, 2017
324920b
Merge branch 'master' into ci-bootstrap-lint
Hypnosphi Aug 24, 2017
f2d8b0f
Merge branch 'master' into ci-bootstrap-lint
Hypnosphi Aug 30, 2017
4d76cfa
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Aug 30, 2017
be955b0
Update bootstrap command
Hypnosphi Aug 30, 2017
1ed1422
Run eslint --fix
Hypnosphi Aug 30, 2017
0790c88
Merge remote-tracking branch 'upstream/release/3.3' into ci-bootstrap…
Hypnosphi Aug 31, 2017
84c414b
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 1, 2017
30d83f2
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 5, 2017
36cffa3
Merge remote-tracking branch 'upstream/release/3.3' into ci-bootstrap…
Hypnosphi Sep 6, 2017
05c725f
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 6, 2017
17b2987
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 6, 2017
359ff7b
Merge branch 'release/3.3' into ci-bootstrap-lint
ndelangen Sep 6, 2017
29fda7d
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 6, 2017
4b15658
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 6, 2017
b6886da
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 6, 2017
0f377c0
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 7, 2017
cccad24
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 8, 2017
e4df59e
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 8, 2017
5ec9c50
Use yarn options passthrough
Hypnosphi Sep 8, 2017
44e0c4d
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 9, 2017
6a987ac
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 9, 2017
d399856
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 9, 2017
80db8b0
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 11, 2017
224c773
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 12, 2017
cfbc006
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 12, 2017
8a0b383
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 14, 2017
ce49785
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 15, 2017
075bdf1
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 15, 2017
01919de
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 16, 2017
f036283
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 16, 2017
f90660a
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 22, 2017
1667e8d
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 23, 2017
c482cfc
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Sep 23, 2017
be743ef
Merge branch 'release/3.3' into ci-bootstrap-lint
Hypnosphi Oct 1, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ jobs:
name: "Install dependencies"
command: |
yarn install
- run:
name: "Bootstrapping"
command: |
yarn bootstrap --core --docs
- run:
name: "Linting"
command: |
Expand Down