From 6758bb50b90d041af2717c86f72d20b1f853e621 Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Tue, 10 Sep 2019 19:28:41 -0400 Subject: [PATCH] Fixed GitHub Actions syntax --- .github/workflows/main.yml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 025d2f1a..66096f5e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,13 +3,16 @@ 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 + tests: + name: "Tests" + runs-on: ubuntu-latest + steps: + - 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