Skip to content

Commit 053f6d8

Browse files
author
Abhinav Dhasmana
committed
fixed the action npm command
1 parent b254bee commit 053f6d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/main.workflow

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ action "build" {
1515
action "lint" {
1616
needs = "build"
1717
uses = "actions/npm@master"
18-
args = "lint"
18+
args = "run lint"
1919
}
2020

2121
action "test" {
2222
needs = "build"
2323
uses = "actions/npm@master"
24-
args = "test"
24+
args = "run test"
2525
}

0 commit comments

Comments
 (0)