Skip to content

Commit f413386

Browse files
authored
Merge pull request #17 from addityasingh/as-fix-publish
fix: Add run build instead of build
2 parents 01b22fb + 2007932 commit f413386

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/main.workflow

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ action "install" {
1111
action "build" {
1212
needs = "install"
1313
uses = "actions/npm@master"
14-
args = "build"
14+
args = "run build"
1515
}
1616

1717
action "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+
2335
workflow "publish on release" {
2436
on = "release"
2537
resolves = ["publish"]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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": {

0 commit comments

Comments
 (0)