diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d6585fc5ae..d775481a99 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,14 +23,8 @@ jobs: cache: 'npm' cache-dependency-path: '**/package-lock.json' - run: npm ci - - name: Prettify code - uses: creyD/prettier_action@v4.3 - with: - prettier_options: --write . - only_changed: true - commit_message: 'chore: format with prettier' - clean_node_folder: false - + - name: Check Format + run: npm run format:check - name: Lint # github adds inline annotation for compact or stylish format # which is different than our default for local usage diff --git a/tests/test-config.json b/tests/test-config.json index b8fd95db11..a0af8773cf 100644 --- a/tests/test-config.json +++ b/tests/test-config.json @@ -124,9 +124,7 @@ { "file": "test/e2e/app-dir/app-static/app-static.test.ts", "reason": "Uses CLI output", - "tests": [ - "app-dir static/dynamic handling should warn for too many cache tags" - ] + "tests": ["app-dir static/dynamic handling should warn for too many cache tags"] }, { "file": "test/e2e/app-dir/parallel-routes-and-interception/parallel-routes-and-interception.test.ts",