Skip to content

Commit 8461ca8

Browse files
committed
Remove unneeded checks
1 parent 2f65e4a commit 8461ca8

File tree

6 files changed

+3
-420
lines changed

6 files changed

+3
-420
lines changed

.github/workflows/pr-quality.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -116,16 +116,3 @@ jobs:
116116
- name: Check locale keys
117117
run: pnpm run i18n:check
118118

119-
monorepo-check:
120-
name: Monorepo Integrity
121-
runs-on: ubuntu-latest
122-
needs: install
123-
steps:
124-
- name: Checkout
125-
uses: actions/checkout@v6
126-
127-
- name: Setup toolchain and install dependencies
128-
uses: ./tooling/github/setup
129-
130-
- name: Run monorepo check
131-
run: pnpm run monorepo:check

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ norish/
8989
├── tooling/ # Repo tooling
9090
│ ├── eslint/ # @norish/eslint-config
9191
│ ├── github/ # Shared GitHub Actions composite actions
92-
│ ├── monorepo/ # Root hygiene + dependency checks
92+
│ ├── monorepo/ # Circular dependency checks
9393
│ ├── prettier/ # @norish/prettier-config
9494
│ ├── tailwind/ # @norish/tailwind-config
9595
│ └── typescript/ # @norish/tsconfig
@@ -118,7 +118,7 @@ norish/
118118
1. Create or update a workspace package under `tooling/` with a `package.json` and explicit `exports`.
119119
2. Add the package to `pnpm-workspace.yaml` and consume it via `workspace:*` from each owning workspace.
120120
3. Wire each workspace through local `package.json` scripts (for example `lint`, `format`, `typecheck`) and local config files that import shared config exports.
121-
4. Run `pnpm run hygiene:root`, `pnpm run deps:workspace`, and relevant `turbo run` checks before opening a PR.
121+
4. Run `pnpm run deps:cycles` and relevant `turbo run` checks before opening a PR.
122122

123123
## Code Style Guidelines
124124

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,13 @@
3030
"test:run": "turbo run test",
3131
"test:coverage": "turbo run test:coverage",
3232
"lint": "turbo run lint",
33-
"lint:check": "turbo run lint && pnpm run monorepo:check",
33+
"lint:check": "turbo run lint",
3434
"typecheck": "turbo run typecheck",
3535
"typecheck:mobile": "pnpm --filter @norish/trpc run typecheck && pnpm --filter @norish/mobile exec tsc --noEmit",
3636
"typecheck:web": "pnpm --filter @norish/web run typecheck",
3737
"format": "turbo run format",
3838
"format:check": "turbo run format",
3939
"deps:cycles": "node tooling/monorepo/scripts/check-circular-deps.mjs",
40-
"deps:workspace": "node tooling/monorepo/scripts/check-workspace-dependencies.mjs",
41-
"hygiene:root": "node tooling/monorepo/scripts/check-root-hygiene.mjs",
42-
"monorepo:check": "pnpm run hygiene:root && pnpm run deps:workspace",
4340
"i18n:check": "pnpm --filter @norish/i18n run check:locale-keys"
4441
},
4542
"dependencies": {

tooling/monorepo/root-hygiene-policy.json

Lines changed: 0 additions & 56 deletions
This file was deleted.

tooling/monorepo/scripts/check-root-hygiene.mjs

Lines changed: 0 additions & 135 deletions
This file was deleted.

0 commit comments

Comments
 (0)