From b5572aae7ce9846521bbfafc68ccfb497182bde1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramiro=20G=C3=B3mez?= Date: Tue, 5 Nov 2019 01:09:04 +0100 Subject: [PATCH] Issue #59: Fix action syntax. --- .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 ee7adac..c50e771 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,9 @@ jobs: uses: actions/setup-node@master with: node-version: 12.x + - name: npm install + run: npm install + - name: Run server + run: npm run serve - name: Run example map tests - - run: npm install - - run: npm run serve - - run: npm run test + run: npm run test