diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 0000000..8b8b592 --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,9 @@ +workflow "Verify changes on push" { + resolves = ["Run all tests"] + on = "push" +} + +action "Run all tests" { + uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680" + args = "test" +}