remove old workflow file

This commit is contained in:
Unit Test 2020-02-20 14:03:42 -05:00
parent 84b1acafa0
commit 49f565d8e3
No known key found for this signature in database
GPG Key ID: 1899120ECD0A1784
1 changed files with 0 additions and 36 deletions

36
.github/main.workflow vendored
View File

@ -1,36 +0,0 @@
workflow "test-and-deploy" {
on = "push"
resolves = "deploy"
}
action "install" {
uses = "docker://node:11.6.0"
args = "npm install"
}
action "test" {
uses = "docker://node:11.6.0"
args = "npm test"
needs = ["install"]
}
action "lint" {
uses = "./.github/actions/jshint"
needs = ["install"]
}
action "branch-filter" {
needs = ["test","lint"]
uses = "actions/bin/filter@master"
args = "branch master"
}
action "deploy" {
needs = ["branch-filter"]
uses = "actions/bin/sh@master"
args = ["env"]
secrets = ["PHONY_SECRET"]
env = {
PHONY_ENV = "foo"
}
}