Skip to content

Commit bfda81e

Browse files
committed
👨‍🔧 added github actions workflow
1 parent 47b9cd8 commit bfda81e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/main.workflow

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
workflow "Install and Test" {
2+
on = "push"
3+
resolves = ["Test"]
4+
}
5+
6+
action "Install" {
7+
uses = "borales/actions-yarn@master"
8+
args = "install"
9+
}
10+
11+
action "Test" {
12+
needs = ["Install"]
13+
uses = "borales/actions-yarn@master"
14+
args = "test"
15+
}
16+
17+
# action "Publish" {
18+
# needs = "Test"
19+
# uses = "borales/actions-yarn@master"
20+
# args = "publish --access public"
21+
# secrets = ["NPM_AUTH_TOKEN"]
22+
# }

0 commit comments

Comments
 (0)