From 6388e9fa1648049e030092011af74f0577c6ef54 Mon Sep 17 00:00:00 2001 From: legobt <6wbvkn0j@anonaddy.me> Date: Fri, 15 Sep 2023 22:16:52 +0000 Subject: [PATCH] ci: skip lint step on yarn 14.x only --- .github/workflows/lint-test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index e080bef..bbf4302 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -6,7 +6,7 @@ on: pull_request: jobs: - build-lint-test-legacy: + build-lint-test: name: Build, Lint, and Test runs-on: ubuntu-20.04 strategy: @@ -33,6 +33,7 @@ jobs: - run: yarn allow-scripts - run: yarn build - run: yarn lint + if: '${{ matrix.node-version != "14.x" }}' - run: yarn test - name: Validate RC changelog if: ${{ startsWith(github.head_ref, 'release/') }}