Skip to content

Commit

Permalink
chore: Fix build checks
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Ziegler <[email protected]>
  • Loading branch information
halostatue authored and github-actions[bot] committed Nov 1, 2024
1 parent 244c1ea commit 4848e0d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ jobs:
- run: pnpm build:all
working-directory: ./ts

- name: Check the publications status
run: |
pnpm exec publint run
pnpm recursive --stream exec publint run
working-directory: ./ts

- name: self-test
run: |
pnpm --silent cli:generate | pnpm --silent cli:run --strict
Expand Down
3 changes: 1 addition & 2 deletions ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@
"build:all": "pnpm recursive run build:all",
"build:docs": "pnpm recursive run build:docs",
"build:watch": "pnpm recursive run --stream build:watch",
"check": "pnpm biome check . && pnpm recursive run --stream check && pnpm recursive run --stream check:package && pnpm run check:package",
"check": "pnpm biome check . && pnpm recursive run --stream check",
"check:fix": "pnpm biome check --write . && pnpm recursive run --stream check:fix",
"check:package": "pnpm exec publint run",
"cli": "pnpm --silent exec tsx packages/suite/src/index.ts",
"cli:generate": "pnpm --silent run cli generate",
"cli:run": "pnpm --silent run cli run",
Expand Down
1 change: 0 additions & 1 deletion ts/packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"build:watch": "concurrently 'pkgroll --watch' 'typedoc --watch --preserveWatchOutput'",
"check": "biome check .",
"check:fix": "biome check --write .",
"check:package": "pnpm exec publint run",
"prepack": "pnpm build",
"test": "vitest run",
"test:coverage": "vitest --coverage",
Expand Down
1 change: 0 additions & 1 deletion ts/packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"build:watch": "concurrently 'pkgroll --watch' 'typedoc --watch --preserveWatchOutput'",
"check": "biome check .",
"check:fix": "biome check --write .",
"check:package": "pnpm exec publint run",
"prepack": "pnpm build"
},
"engines": {
Expand Down
1 change: 0 additions & 1 deletion ts/packages/suite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"build:watch": "concurrently 'pkgroll --watch' 'typedoc --watch --preserveWatchOutput'",
"check": "biome check .",
"check:fix": "biome check --write .",
"check:package": "pnpm exec publint run",
"cli": "tsx src/index.ts",
"cli:generate": "pnpm run cli generate",
"cli:run": "pnpm run cli run",
Expand Down

0 comments on commit 4848e0d

Please sign in to comment.