From e1faad919691fbcccb27aa2cdedd8677a49b59bc Mon Sep 17 00:00:00 2001 From: Mohamed Elkholy Date: Tue, 16 Feb 2021 05:58:04 +0200 Subject: [PATCH] revert: "chore(test): setup tests to run on both node 10 and 12" This reverts commit 99b6cd6e --- .github/workflows/main.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ffcc95b..0db632e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,21 +10,17 @@ jobs: test: if: "!contains(github.event.head_commit.message, '[skip ci]')" runs-on: ubuntu-20.04 - strategy: - matrix: - node: [ '10', '12' ] - name: Node ${{ matrix.node }} test steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: ${{ matrix.node }} + node-version: 12 - uses: actions/cache@v2 with: path: ~/.pnpm-store - key: ${{ matrix.node }}-build-${{ hashFiles('**/pnpm-lock.yaml') }} + key: ${{ runner.os }}-build-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | - ${{ matrix.node }}-build- + ${{ runner.os }}-build- - run: | npm -g install pnpm@5.16 pnpm set verify-store-integrity false