From c940e3799faf9f62043cadfeb0b5a9e5fa44c236 Mon Sep 17 00:00:00 2001 From: Matthew Griffith Date: Thu, 12 Mar 2020 19:28:24 -0400 Subject: [PATCH] Only run npm install in github action --- .github/workflows/tests.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 448a995..e763b25 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,9 +27,11 @@ jobs: - name: Install run: npm install - - - name: Elm test suite - run: npm run test + + - name: Echo + run: echo "successfully installed" +# - name: Elm test suite +# run: npm run test # - name: Rendering test suite # run: npm run test-rendering