From 2f48e9c59399fa1e9aa8693be80ad9224aaec293 Mon Sep 17 00:00:00 2001 From: Andrey Sitnik Date: Tue, 3 May 2022 12:51:47 +0200 Subject: [PATCH] Try to fix CI --- .github/workflows/test.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d5700f78..41fdcd23 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,7 +33,6 @@ jobs: node-version: - 16 - 14 - - 12 name: Node.js ${{ matrix.node-version }} Quick steps: - name: Checkout the repository @@ -55,7 +54,12 @@ jobs: FORCE_COLOR: 2 old: runs-on: ubuntu-latest - name: Node.js 10 Quick + strategy: + matrix: + node-version: + - 12 + - 10 + name: Node.js ${{ matrix.node-version }} Quick steps: - name: Checkout the repository uses: actions/checkout@v3 @@ -65,10 +69,10 @@ jobs: version: 3 env: ACTIONS_ALLOW_UNSECURE_COMMANDS: true - - name: Install Node.js 10 + - name: Install Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: - node-version: 10 + node-version: ${{ matrix.node-version }} - name: Install dependencies run: pnpm install --frozen-lockfile --ignore-scripts - name: Run unit tests