From e4de6a96b5f2754ed8fb30d75bc39744bd33e0e1 Mon Sep 17 00:00:00 2001 From: Paul Hatcherian <1835615+PaulHatch@users.noreply.github.com> Date: Sat, 25 Jan 2020 12:08:27 -0500 Subject: [PATCH] Fix name for test project and remove redundant configuration settings for test --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b256d82..48cdfe9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: "test-local" +name: "Test and Run" on: pull_request: push: @@ -15,7 +15,7 @@ jobs: - name: NPM Install run: npm ci - name: Test - run: git config --global user.name "Test User" && git config --global user.email "test@example.com" && npm test + run: npm test - name: Package run: npm run package - name: Run Action