From 5ce6c24a3f50bf294748723074d924947c9c8a71 Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Sun, 6 Feb 2022 17:55:20 -0500 Subject: [PATCH] Fix lint not running in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8ec208..e31f843 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,6 @@ jobs: # Will also (through `prepare` hook): 1. install ./app, and 2. build - run: npm ci --no-fund # Only run linter once, for faster CI. Align the versions of Node here with above and publish.yml. - - if: matrix.platform == 'ubuntu-latest' && matrix.node-version == '17.x' + - if: matrix.platform == 'ubuntu-latest' && matrix.node-version == '17' run: npm run lint - run: npm test