deno-action icon indicating copy to clipboard operation
deno-action copied to clipboard

Github action for setup Deno

An action for Github to run Deno command line.

Usage

create .github/main.workflow in your project

workflow "Test" {
  on = "push"
  resolves = ["Run test"]
}

action "Run test" {
  uses = "denolib/[email protected]"
  args = "run test.ts"
}

Here is an example for using

License

MIT © 2019 DenoLib Contributors.