mirror of
https://github.com/withastro/astro.git
synced 2025-02-17 22:44:24 -05:00
ci: fix regression of the commands (#10182)
This commit is contained in:
parent
6343f6a438
commit
891c26e92f
2 changed files with 4 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -98,7 +98,7 @@ jobs:
|
||||||
run: pnpm run lint
|
run: pnpm run lint
|
||||||
|
|
||||||
- name: Format Check
|
- name: Format Check
|
||||||
run: pnpm run format --check
|
run: pnpm run format:ci
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: "Test: ${{ matrix.os }} (node@${{ matrix.NODE_VERSION }})"
|
name: "Test: ${{ matrix.os }} (node@${{ matrix.NODE_VERSION }})"
|
||||||
|
|
|
@ -14,9 +14,11 @@
|
||||||
"build:examples": "turbo run build --filter=\"@example/*\"",
|
"build:examples": "turbo run build --filter=\"@example/*\"",
|
||||||
"dev": "turbo run dev --concurrency=40 --parallel --filter=astro --filter=create-astro --filter=\"@astrojs/*\" --filter=\"@benchmark/*\"",
|
"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": "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": "prettier -w \"**/*\" --ignore-unknown --cache",
|
||||||
|
"format:code:check": "prettier -w \"**/*\" --ignore-unknown --cache --check",
|
||||||
"format:imports": "biome check --apply .",
|
"format:imports": "biome check --apply .",
|
||||||
|
"format:imports:check": "biome ci .",
|
||||||
"test": "turbo run test --concurrency=1 --filter=astro --filter=create-astro --filter=\"@astrojs/*\"",
|
"test": "turbo run test --concurrency=1 --filter=astro --filter=create-astro --filter=\"@astrojs/*\"",
|
||||||
"test:match": "cd packages/astro && pnpm run test:match",
|
"test:match": "cd packages/astro && pnpm run test:match",
|
||||||
"test:unit": "cd packages/astro && pnpm run test:unit",
|
"test:unit": "cd packages/astro && pnpm run test:unit",
|
||||||
|
|
Loading…
Add table
Reference in a new issue