From 5cf4d2aada11504ce39991246ce40df21c2cdf46 Mon Sep 17 00:00:00 2001 From: Roman Hotsiy Date: Mon, 25 May 2020 16:49:00 +0300 Subject: [PATCH] chore: simplify .github workflow --- .github/workflows/unit-tests.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 7f60b6e1..897f8ce2 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -3,18 +3,10 @@ name: Unit Tests on: [push] jobs: - build: - + build-and-unit: runs-on: ubuntu-latest - steps: - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: 10.x - - name: npm install, build, and test - run: | - npm install - npm run bundle - npm test + - run: npm install + - run: npm run bundle + - run: npm test