From 85a04ede33bcd93f942c76b4306c319ff927c5f2 Mon Sep 17 00:00:00 2001 From: Evan Yamanishi Date: Sun, 10 Sep 2023 19:53:05 -0400 Subject: [PATCH] ci: check for matrix node, not node version --- .github/workflows/integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 93821edc9..85032e9cf 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -115,7 +115,7 @@ jobs: node-version: ${{ matrix.node }} cache: "npm" - name: Update npm - if: ${{ env.NODE_VERSION == 14 }} + if: ${{ matrix.node == 14 }} run: npm i -g npm@7 - name: Install 📦 run: npm ci