From 37d69061f69cb3dad50dc0cbb805e841be47c1db Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 14 Oct 2025 13:40:29 +0700 Subject: [PATCH] Remove templates check on CI Signed-off-by: Andrey Sobolev --- .github/workflows/main.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ee4cbcf341d..dd05a217e9c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -149,17 +149,6 @@ jobs: key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} - - name: Apply templates... - run: node common/scripts/install-run-rush.js apply-templates - - - name: Check templates - run: | - echo '================================================================' - echo 'Checking for diff files' - echo '================================================================' - git diff '*.js' '*.ts' '*.svelte' '*.json' '*.yaml' | cat - [ -z "$(git diff --name-only '*.js' '*.ts' '*.svelte' '*.json' '*.yaml' | cat)" ] - echo '================================================================' - name: Formatting... run: node common/scripts/install-run-rush.js fast-format --branch ${{ github.base_ref || 'develop' }} - name: Check files formatting