From dfd8ef4d1444a863c6fd88128b4d0f67115c87a6 Mon Sep 17 00:00:00 2001 From: Pedro Jorge Date: Wed, 11 Sep 2024 17:45:31 -0300 Subject: [PATCH] actions: remove matrix strategy --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70c6a27..282ba4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,9 +9,6 @@ jobs: build: name: 'Build and Push' runs-on: ubuntu-latest - strategy: - matrix: - node: [ 16, 18, 20] steps: - uses: actions/checkout@v4 @@ -22,10 +19,10 @@ jobs: version: 9 run_install: false - - name: Setup node | ${{ matrix.node }} + - name: Setup node uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node }} + node-version: 20 cache: 'pnpm' - run: pnpm install