From 0a55f778ed318ab418cb733efbee9b12093dc89c Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Fri, 21 May 2021 23:28:01 +0200 Subject: [PATCH] chore(ci): removed useless matrix --- .github/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d460ff5d..c65f90a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,12 +4,7 @@ on: [pull_request, push] jobs: ci: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest] - node: [14] + runs-on: ubuntu-latest steps: - name: Checkout @@ -18,7 +13,7 @@ jobs: - name: Setup node env uses: actions/setup-node@v2.1.2 with: - node-version: ${{ matrix.node }} + node-version: 14 - name: Cache node_modules uses: actions/cache@v2