From f025d675a9d511d3dbe2511fd50cbf2f3c47bdc5 Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Tue, 10 Sep 2019 19:21:22 -0400 Subject: [PATCH] Added basic GitHub Actions workflow to build the project --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..025d2f1a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +name: CI + +on: [push, pull_request] + +jobs: + build: + - uses: actions/checkout@v1 + - name: Use Node.js 8 + uses: actions/setup-node@v1 + with: + node-version: 8 + - name: "npm install" + run: npm install + - name: "Run Grunt" + run: grunt