File tree Expand file tree Collapse file tree 4 files changed +1221
-1359
lines changed Expand file tree Collapse file tree 4 files changed +1221
-1359
lines changed Original file line number Diff line number Diff line change 79
79
80
80
- run : npm run prettier
81
81
82
- test :
82
+ test-end-to-end :
83
83
docker :
84
84
- image : circleci/node:latest
85
85
91
91
- attach_workspace :
92
92
at : " ."
93
93
94
- - run : npm run test:unit
94
+ - run : npm run test:end-to-end
95
+
96
+ test-unit :
97
+ docker :
98
+ - image : circleci/node:latest
99
+
100
+ working_directory : ~/repo
101
+
102
+ steps :
103
+ - checkout
104
+
105
+ - attach_workspace :
106
+ at : " ."
107
+
108
+ - run : npm run test:unit -- --coverage
95
109
96
110
tsc :
97
111
docker :
@@ -129,7 +143,10 @@ workflows:
129
143
- prettier :
130
144
requires :
131
145
- build
132
- - test :
146
+ - test-end-to-end :
147
+ requires :
148
+ - build
149
+ - test-unit :
133
150
requires :
134
151
- build
135
152
- tsc :
Original file line number Diff line number Diff line change @@ -28,9 +28,14 @@ module.exports = {
28
28
"@typescript-eslint/no-magic-numbers" : 0 ,
29
29
"@typescript-eslint/no-parameter-properties" : 0 ,
30
30
"@typescript-eslint/no-type-alias" : 0 ,
31
+ "@typescript-eslint/no-unnecessary-condition" : 0 ,
31
32
"@typescript-eslint/no-use-before-define" : 0 ,
32
33
"@typescript-eslint/prefer-for-of" : 1 ,
33
34
"@typescript-eslint/prefer-interface" : 0 ,
35
+ "@typescript-eslint/quotes" : 0 ,
36
+ "@typescript-eslint/require-await" : 0 ,
37
+ "@typescript-eslint/strict-boolean-expressions" : 0 ,
38
+ "@typescript-eslint/typedef" : 0 ,
34
39
"default-case" : 0 ,
35
40
"guard-for-in" : 0 ,
36
41
"import/no-extraneous-dependencies" : [
You can’t perform that action at this time.
0 commit comments