Skip to content

Commit f98374d

Browse files
committed
run prettier on config files
1 parent c74bee9 commit f98374d

File tree

5 files changed

+628
-650
lines changed

5 files changed

+628
-650
lines changed

.travis.yml

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,39 +14,46 @@ cache:
1414
- ".eslintcache"
1515

1616
stages:
17-
- basic
18-
- advanced
19-
- versions
17+
- basic
18+
- advanced
19+
- versions
2020

2121
matrix:
2222
include:
2323
- os: linux
2424
node_js: "10"
25-
env: NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=basic
25+
env:
26+
NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=basic
2627
stage: basic
2728
- os: linux
2829
node_js: "10"
29-
env: NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=lint-unit
30+
env:
31+
NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=lint-unit
3032
stage: advanced
3133
- os: linux
3234
node_js: "10"
33-
env: NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=integration
35+
env:
36+
NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=integration
3437
stage: advanced
3538
- os: linux
3639
node_js: "10"
37-
env: NO_WATCH_TESTS=1 ALTERNATIVE_SORT=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=integration
40+
env:
41+
NO_WATCH_TESTS=1 ALTERNATIVE_SORT=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=integration
3842
stage: versions
3943
- os: osx
4044
node_js: "10"
41-
env: NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=integration
45+
env:
46+
NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=integration
4247
stage: versions
4348
- os: linux
4449
node_js: "8"
45-
env: NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=integration
50+
env:
51+
NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=integration
4652
stage: versions
4753
- os: linux
4854
node_js: "6"
49-
env: NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=integration
55+
env:
56+
NO_WATCH_TESTS=1 JEST="--maxWorkers=2 --cacheDirectory .jest-cache" JOB_PART=integration
5057
stage: versions
5158
fast_finish: true
5259
allow_failures:
@@ -66,4 +73,5 @@ after_success:
6673

6774
notifications:
6875
slack:
69-
secure: JduSdKWwbnLCwo7Z4E59SGE+Uw832UwnXzQiKEpg1BV45MYDPRiGltly1tRHmPh9OGjvGx3XSkC2tNGOBLtL4UL2SCkf012x0t7jDutKRfcv/njynl8jk8l+UhPmaWiHXDQAgGiiKdL4RfzPLW3HeVHCOWm0LKMzcarTa8tw+rE=
76+
secure:
77+
JduSdKWwbnLCwo7Z4E59SGE+Uw832UwnXzQiKEpg1BV45MYDPRiGltly1tRHmPh9OGjvGx3XSkC2tNGOBLtL4UL2SCkf012x0t7jDutKRfcv/njynl8jk8l+UhPmaWiHXDQAgGiiKdL4RfzPLW3HeVHCOWm0LKMzcarTa8tw+rE=

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,5 @@ test_script:
3232
- cmd: yarn istanbul report --report lcovonly
3333
- cmd: yarn unlink webpack
3434
- cmd: yarn global add codecov && codecov -F %job_part% --disable=gcov
35-
- cmd: del /F /Q .jest-cache\\haste-map* .jest-cache\\perf-cache* 2> null || Ver > null
35+
- cmd:
36+
del /F /Q .jest-cache\\haste-map* .jest-cache\\perf-cache* 2> null || Ver > null

codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ coverage:
1818
target: 0%
1919
patch:
2020
default: off
21-
integration:
22-
flags: integration
21+
basic:
22+
flags: basic
2323
target: 90%
2424
base: pr
2525
integration:

0 commit comments

Comments
 (0)