File tree 2 files changed +25
-1
lines changed
2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 10
10
steps :
11
11
- uses : actions/checkout@v2
12
12
13
- - uses : actions/setup-node@v1
13
+ - uses : actions/setup-node@v2
14
14
with :
15
15
node-version : 14
16
16
cache : ' npm'
Original file line number Diff line number Diff line change @@ -2,6 +2,30 @@ module.exports = {
2
2
ci : {
3
3
assert : {
4
4
preset : "lighthouse:no-pwa" ,
5
+ assertions : {
6
+ // Performance related
7
+ "font-display" : "off" ,
8
+ "unsized-images" : "off" ,
9
+ "unused-css-rules" : "off" ,
10
+ "unused-javascript" : "off" ,
11
+ "uses-optimized-images" : "off" ,
12
+ "uses-responsive-images" : "off" ,
13
+ "unminified-css" : "off" ,
14
+ "third-party-facades" : "off" ,
15
+ "offscreen-images" : "off" ,
16
+ // Not performance related
17
+ "tap-targets" : "off" ,
18
+ "non-composited-animations" : "off" ,
19
+ "button-name" : "off" ,
20
+ "color-contrast" : "off" ,
21
+ "csp-xss" : "off" ,
22
+ "errors-in-console" : "off" ,
23
+ "external-anchors-use-rel-noopener" : "off" ,
24
+ "heading-order" : "off" ,
25
+ "link-name" : "off" ,
26
+ "meta-description" : "off" ,
27
+ "uses-text-compression" : "off" ,
28
+ } ,
5
29
} ,
6
30
} ,
7
31
} ;
You can’t perform that action at this time.
0 commit comments