diff options
author | 2024-02-21 14:35:21 +0000 | |
---|---|---|
committer | 2024-02-21 14:35:21 +0000 | |
commit | 891c26e92f7a9fc2f839ae1f04ff1a05a8cb4a03 (patch) | |
tree | 49797ae587e6cced7641ea7ec48cedc04de65f25 | |
parent | 6343f6a438d790fa16a0dd268f4a51def4fa0f33 (diff) | |
download | astro-891c26e92f7a9fc2f839ae1f04ff1a05a8cb4a03.tar.gz astro-891c26e92f7a9fc2f839ae1f04ff1a05a8cb4a03.tar.zst astro-891c26e92f7a9fc2f839ae1f04ff1a05a8cb4a03.zip |
ci: fix regression of the commands (#10182)
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | package.json | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88d5aaa4a..acca6a0c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,7 +98,7 @@ jobs: run: pnpm run lint - name: Format Check - run: pnpm run format --check + run: pnpm run format:ci test: name: "Test: ${{ matrix.os }} (node@${{ matrix.NODE_VERSION }})" diff --git a/package.json b/package.json index b12affb58..83cef9f4d 100644 --- a/package.json +++ b/package.json @@ -14,9 +14,11 @@ "build:examples": "turbo run build --filter=\"@example/*\"", "dev": "turbo run dev --concurrency=40 --parallel --filter=astro --filter=create-astro --filter=\"@astrojs/*\" --filter=\"@benchmark/*\"", "format": "pnpm run format:code && pnpm run format:imports", - "format:ci": "pnpm run format:code && pnpm run format:imports", + "format:ci": "pnpm run format:code:check && pnpm run format:imports:check", "format:code": "prettier -w \"**/*\" --ignore-unknown --cache", + "format:code:check": "prettier -w \"**/*\" --ignore-unknown --cache --check", "format:imports": "biome check --apply .", + "format:imports:check": "biome ci .", "test": "turbo run test --concurrency=1 --filter=astro --filter=create-astro --filter=\"@astrojs/*\"", "test:match": "cd packages/astro && pnpm run test:match", "test:unit": "cd packages/astro && pnpm run test:unit", |