From 23ee44d75f55e45e4c2786d92794c1c76e1a5f48 Mon Sep 17 00:00:00 2001 From: Cristobal Contreras Rubio Date: Thu, 3 Aug 2023 20:17:41 +0200 Subject: [PATCH] publish just with node 18 --- .github/workflows/publish.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 82d3e02..2d69365 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,10 +36,6 @@ jobs: needs: test if: github.ref == 'refs/heads/main' - strategy: - matrix: - node-version: [16.x, 18.x] - steps: - name: 👍 Checkout uses: actions/checkout@v3 @@ -47,7 +43,7 @@ jobs: - name: ❇️ Setup node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 18 registry-url: 'https://registry.npmjs.org' - name: 📥 Install Dependencies