diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79962c07e1..cc214ba413 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,7 @@ jobs: run: pnpm run build - name: Lint - run: pnpm run lint + run: pnpm run lint:ci test: name: "Test: ${{ matrix.os }} (node@${{ matrix.NODE_VERSION }})" diff --git a/package.json b/package.json index ecf688f19c..a71f86973e 100644 --- a/package.json +++ b/package.json @@ -36,6 +36,7 @@ "test:e2e:hosts": "turbo run test:hosted", "benchmark": "astro-benchmark", "lint": "biome lint && eslint . --report-unused-disable-directives", + "lint:ci": "biome ci --formatter-enabled=false --organize-imports-enabled=false --reporter=github && eslint . --report-unused-disable-directives", "lint:fix": "biome lint --write --unsafe", "version": "changeset version && node ./scripts/deps/update-example-versions.js && pnpm install --no-frozen-lockfile && pnpm run format", "preinstall": "npx only-allow pnpm"