From 5aba723f74940a555da41f4c11a5445d107edc89 Mon Sep 17 00:00:00 2001 From: Chris Manson Date: Thu, 9 Nov 2023 21:59:57 +0000 Subject: [PATCH] use a specific node version for the lint step --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a2c500f1..76560aba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,12 +11,20 @@ on: tags: - "*" +concurrency: + group: ci-${{ github.head_ref || github.ref }} + cancel-in-progress: true + jobs: lint: name: "Linting" runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - uses: actions/setup-node@v4 + with: + node-version: 16 + cache: yarn - run: yarn install --frozen-lockfile --non-interactive - run: yarn lint:js