File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 2.1
2
+
3
+ orbs :
4
+
5
+
6
+ ignore_forks : &ignore_forks
7
+ branches :
8
+ # Forked pull requests have CIRCLE_BRANCH set to pull/XXX
9
+ ignore : /pull\/[0-9]+/
10
+
11
+ only_forks : &only_forks
12
+ branches :
13
+ # Forked pull requests have CIRCLE_BRANCH set to pull/XXX
14
+ only : /pull\/[0-9]+/
15
+
16
+ jobs :
17
+ test :
18
+ executor :
19
+ name : node/default
20
+ tag : ' 16.16'
21
+ steps :
22
+ - checkout
23
+ - node/install-packages :
24
+ pkg-manager : yarn
25
+ - run :
26
+ command : yarn run test
27
+ name : Run the ESLint plugin tests
28
+
29
+ workflows :
30
+ test_from_branches :
31
+ jobs :
32
+ - test :
33
+ filters :
34
+ << : *ignore_forks
35
+ test_from_forks :
36
+ jobs :
37
+ - test :
38
+ filters :
39
+ << : *only_forks
Original file line number Diff line number Diff line change 77
77
"tabWidth" : 4 ,
78
78
"singleQuote" : true ,
79
79
"trailingComma" : " none"
80
+ },
81
+ "engines" : {
82
+ "node" : " >=14"
83
+ },
84
+ "volta" : {
85
+ "node" : " 16.17.1" ,
86
+ "yarn" : " 1.22.19"
80
87
}
81
88
}
You can’t perform that action at this time.
0 commit comments