Skip to content

Commit 45ef36f

Browse files
authored
Create main.workflow
1 parent f4d00d0 commit 45ef36f

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/main.workflow

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
workflow "Build, Test" {
2+
on = "push"
3+
}
4+
5+
action "Build" {
6+
uses = "actions/npm@master"
7+
args = "install"
8+
}
9+
10+
action "Test" {
11+
needs = "Build"
12+
uses = "actions/npm@master"
13+
args = "test"
14+
}

0 commit comments

Comments
 (0)