From 0ce0515c2b0f9845116a948c9232ccd4ad72b38c Mon Sep 17 00:00:00 2001 From: Kien Mai Date: Sat, 24 Feb 2024 18:52:06 -0600 Subject: [PATCH] Make lint parallel --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e24794..587323d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,9 @@ jobs: lint: runs-on: ubuntu-latest needs: build + concurrency: + group: lint-${{ github.sha }} + cancel-in-progress: true steps: - name: Run linter on workspace backend run: docker run ${{ env.IMAGE_NAME }} yarn workspace @team8/backend lint