File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ action "install" {
1111action "build" {
1212 needs = " install"
1313 uses = " actions/npm@master"
14- args = " build"
14+ args = " run build"
1515}
1616
1717action "cover" {
@@ -20,6 +20,18 @@ action "cover" {
2020 args = " run cover"
2121}
2222
23+ action "report-coverage" {
24+ needs = " install"
25+ uses = " actions/npm@master"
26+ args = " run report-coverage"
27+ }
28+
29+ action "upload-coverage" {
30+ needs = " install"
31+ uses = " actions/npm@master"
32+ args = " run codecov"
33+ }
34+
2335workflow "publish on release" {
2436 on = " release"
2537 resolves = [" publish" ]
Original file line number Diff line number Diff line change 11{
22 "name" : " add-eventlistener-with-options" ,
3- "version" : " 1.25.4 " ,
3+ "version" : " 1.25.5 " ,
44 "description" : " A utility function to check if EventTarget.addEventListener supports adding passive events" ,
55 "main" : " index.js" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments