From 88bb87eb4ab7da1e7352d239b7354b54542dd7b2 Mon Sep 17 00:00:00 2001 From: Ben Scott Date: Sat, 2 Dec 2023 20:37:50 -0800 Subject: [PATCH] chore: skip perf step in node 14 as eslint plugin isn't compatible with v14 --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 14e91e17..c78ada63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,4 +36,7 @@ jobs: run: pnpm mocha - name: Perf + # Skip on node 14, as eslint-plugin-n contains syntax that doesn't work + # with node 14 + if: ${{ matrix.node-version != 14 }} run: TIMING=1 pnpm lint