From a0d03f592fd8ff46d9210630043beb2d675bcab0 Mon Sep 17 00:00:00 2001
From: Danny McCormick <damccorm@microsoft.com>
Date: Wed, 5 Jun 2019 15:35:03 -0400
Subject: [PATCH] Add actions ci

---
 .github/main.workflow | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 .github/main.workflow

diff --git a/.github/main.workflow b/.github/main.workflow
new file mode 100644
index 00000000..14968ea8
--- /dev/null
+++ b/.github/main.workflow
@@ -0,0 +1,27 @@
+workflow "CI" {
+  on = "push"
+  resolves = ["Format", "Test"]
+}
+
+action "Dependencies" {
+  uses = "actions/npm@v2.0.0"
+  args = "ci"
+}
+
+action "Build" {
+  needs = "Dependencies"
+  uses = "actions/npm@v2.0.0"
+  args = "run build"
+}
+
+action "Format" {
+  needs = "Dependencies"
+  uses = "actions/npm@v2.0.0"
+  args = "run format-check"
+}
+
+action "Test" {
+  needs = "Build"
+  uses = "actions/npm@v2.0.0"
+  args = "test"
+}
\ No newline at end of file