diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 76cd6e8..7704696 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -20,7 +20,9 @@ jobs: mode: - command: prettier:check skip-build: true - - command: test + - command: typecheck + skip-build: true + - command: build skip-build: true fail-fast: false diff --git a/package.json b/package.json index b64b274..8531250 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,6 @@ "build": "rsbuild build", "preview": "rsbuild preview", "typecheck": "tsc -p tsconfig.json --noEmit", - "test": "yarn typecheck && yarn build", "prettier:check": "prettier --list-different .", "prettier:fix": "prettier --write ." },