Skip to content

Instantly share code, notes, and snippets.

@terakilobyte
Created December 31, 2015 21:37
Show Gist options
  • Select an option

  • Save terakilobyte/0b009fb81b0d9f8aff5f to your computer and use it in GitHub Desktop.

Select an option

Save terakilobyte/0b009fb81b0d9f8aff5f to your computer and use it in GitHub Desktop.
defmodule Mix.Tasks.Verify do
use Mix.Task
@shortdoc "Run mix and npm tests"
def run(_) do
IO.inspect(System.cmd("mix", ["test"]))
IO.inspect(System.cmd("npm", ["test"]))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment