From 4f202b5829886a87c056569529da8213cb895b2f Mon Sep 17 00:00:00 2001 From: Neil Kalman Date: Wed, 11 Nov 2020 19:08:17 +0200 Subject: [PATCH] fix(actions): remove matrix for now --- .github/workflows/test.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1fd28bd..73056ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,16 +18,12 @@ jobs: name: tests runs-on: ubuntu-latest - strategy: - matrix: - node-version: [10.x, 12.x, 14.x] - steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: - node-version: ${{ matrix.node-version }} + node-version: 12 - run: npm ci - run: npm run build --if-present - run: npm test