create .github/main.workflow
in your project
workflow "Test" {
on = "push"
resolves = ["Run test"]
}
action "Run test" {
uses = "denolib/deno-action@0.20.0"
args = "run test.ts"
}
Here is an example for using
MIT © 2019 DenoLib Contributors.