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