Skip to content

Commit a74d6ef

Browse files
committed
moved linting to its own circleci job
1 parent 19bf0cf commit a74d6ef

1 file changed

Lines changed: 11 additions & 10 deletions

File tree

.circleci/config.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,10 @@ commands:
2323
- run:
2424
name: yarn test
2525
command: yarn test
26-
lint:
27-
steps:
28-
- run:
29-
name: yarn lint
30-
command: CI=true yarn lint
31-
3226
install_and_test:
3327
steps:
3428
- install_and_cache_yarn_linux
3529
- run_all_tests
36-
- lint
3730

3831
# based on https://github.com/nodejs/Release schedule
3932
jobs:
@@ -52,21 +45,29 @@ jobs:
5245
- image: circleci/node:14
5346
steps:
5447
- install_and_test
55-
node v14_6:
48+
node v14_16:
5649
docker:
57-
- image: circleci/node:14.6.0
50+
- image: circleci/node:14.16.0
5851
steps:
5952
- install_and_test
6053
node v15:
6154
docker:
6255
- image: circleci/node:15
6356
steps:
6457
- install_and_test
58+
linting:
59+
docker:
60+
- image: circleci/node:14.16.0
61+
steps:
62+
- run:
63+
name: yarn lint
64+
command: CI=true yarn lint
6565
workflows:
6666
main:
6767
jobs:
68+
- linting
6869
- node v10
6970
- node v12
7071
- node v14
71-
- node v14_6
72+
- node v14_16
7273
- node v15

0 commit comments

Comments
 (0)