Skip to content

Commit c0f49b5

Browse files
committed
chore: remove redundant -ci script aliases
Removed check-ci, lint-ci, test-ci, and type-ci script aliases that were simple forwards to base commands. Updated CI workflow to call base commands with flags directly.
1 parent 50581b6 commit c0f49b5

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
uses: SocketDev/socket-registry/.github/workflows/ci.yml@d8ff3b0581d799466cfbf150f715c1a4bf9f84a5 # 2025-10-23
2121
with:
2222
fail-fast: false
23-
lint-script: 'pnpm run lint-ci'
23+
lint-script: 'pnpm run lint --all'
2424
node-versions: '[20, 22, 24]'
2525
os-versions: '["ubuntu-latest", "windows-latest"]'
26-
test-script: 'pnpm run test-ci'
26+
test-script: 'pnpm run test --all'
2727
test-setup-script: 'pnpm run build'
28-
type-check-script: 'pnpm run type-ci'
28+
type-check-script: 'pnpm run type'
2929
type-check-setup-script: 'pnpm run build'

package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,17 @@
3232
"build": "node scripts/load.cjs build",
3333
"bump": "node scripts/load.cjs bump",
3434
"check": "node scripts/load.cjs check",
35-
"check-ci": "pnpm run check --all",
3635
"clean": "node scripts/load.cjs clean",
3736
"cover": "node scripts/load.cjs cover",
3837
"fix": "node scripts/load.cjs fix",
3938
"lint": "node scripts/load.cjs lint",
40-
"lint-ci": "pnpm run lint --all",
4139
"precommit": "pnpm run check --lint --staged",
4240
"prepare": "husky",
4341
"prepublishOnly": "echo 'ERROR: Use GitHub Actions workflow for publishing' && exit 1",
4442
"publish": "node scripts/load.cjs publish",
4543
"claude": "node scripts/load.cjs claude",
4644
"test": "node scripts/load.cjs test",
47-
"test-ci": "pnpm run test --all",
4845
"type": "tsgo --noEmit -p .config/tsconfig.check.json",
49-
"type-ci": "pnpm run type",
5046
"update": "node scripts/load.cjs update",
5147
"update:data:npm": "node scripts/load.cjs update-data-npm"
5248
},

0 commit comments

Comments
 (0)