diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index e1543df1..f52f9cc9 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -4,19 +4,17 @@ on: [push] jobs: unit-tests: - runs-on: ubuntu-latest + name: Unit Tests - strategy: - matrix: - node-version: [10.x, 12.x] + runs-on: ubuntu-latest steps: # Setup - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 12.x uses: actions/setup-node@v1 with: - node-version: ${{ matrix.node-version }} + node-version: 12.x - run: npm install # npm run