Skip to content

Commit 334d9b7

Browse files
committed
chore(ci): remove format check from postgrest
1 parent bfe8a84 commit 334d9b7

File tree

3 files changed

+2
-25
lines changed

3 files changed

+2
-25
lines changed

packages/core/postgrest-js/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,6 @@ npx nx test:update postgrest-js
143143
# Type checking only
144144
npx nx test:types postgrest-js
145145

146-
# Format checking
147-
npx nx format:check postgrest-js
148146
```
149147

150148
#### Test Infrastructure

packages/core/postgrest-js/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,13 @@
3434
},
3535
"scripts": {
3636
"clean": "rimraf dist docs/v2",
37-
"format": "node scripts/format.js",
38-
"format:check": "node scripts/format.js check",
3937
"build": "npm run clean && npm run build:cjs && npm run build:esm",
4038
"build:cjs": "tsc -p tsconfig.json",
4139
"build:esm": "cpy wrapper.mjs dist/esm/",
4240
"docs": "typedoc src/index.ts --out docs/v2",
4341
"docs:json": "typedoc --json docs/v2/spec.json --excludeExternals src/index.ts",
44-
"test": "npm run format:check && npm run test:types && npm run db:clean && npm run db:run && npm run test:generated-types && npm run test:run && npm run db:clean && node test/smoke.cjs && node test/smoke.mjs",
45-
"test:ci": "npm run format:check && npm run test:types:ci && npm run db:clean && npm run db:run && npm run test:generated-types && npm run test:run && npm run db:clean && node test/smoke.cjs && node test/smoke.mjs",
42+
"test": "npm run test:types && npm run db:clean && npm run db:run && npm run test:generated-types && npm run test:run && npm run db:clean && node test/smoke.cjs && node test/smoke.mjs",
43+
"test:ci": "npm run test:types:ci && npm run db:clean && npm run db:run && npm run test:generated-types && npm run test:run && npm run db:clean && node test/smoke.cjs && node test/smoke.mjs",
4644
"test:run": "jest --runInBand --coverage",
4745
"test:generated-types": "npm run db:generate-test-types && git diff --exit-code test/types.generated.ts || (echo '❌ Generated types are not up to date. Run npm run db:generate-test-types.' && exit 1)",
4846
"test:update": "npm run db:clean && npm run db:run && npm run db:generate-test-types && jest --runInBand --updateSnapshot && npm run db:clean",

packages/core/postgrest-js/scripts/format.js

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

0 commit comments

Comments
 (0)