From 53c5a2734ca5774be8c8fa2e411e46f3d4fbf0b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Jablo=C3=B1ski?= <43938777+GermanJablo@users.noreply.github.com> Date: Fri, 9 May 2025 15:27:31 -0300 Subject: [PATCH] Disable skip lint, and lint over the entire repo now that it's faster --- .github/workflows/main.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 223fa6808c..2a2572f46e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -62,12 +62,6 @@ jobs: echo "templates: ${{ steps.filter.outputs.templates }}" lint: - # Follows same github's ci skip: [skip lint], [lint skip], [no lint] - if: > - github.event_name == 'pull_request' && - !contains(github.event.pull_request.title, '[skip lint]') && - !contains(github.event.pull_request.title, '[lint skip]') && - !contains(github.event.pull_request.title, '[no lint]') runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 @@ -81,10 +75,8 @@ jobs: pnpm-version: ${{ env.PNPM_VERSION }} pnpm-install-cache-key: pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} - - name: Lint staged - run: | - git diff --name-only --diff-filter=d origin/${GITHUB_BASE_REF}...${GITHUB_SHA} - npx lint-staged --diff="origin/${GITHUB_BASE_REF}...${GITHUB_SHA}" + - name: Lint + run: pnpm lint -- --quiet build: needs: changes