ci setup
Some checks failed
CI / lint-typecheck (pull_request) Failing after 4m51s
CI / tests (pull_request) Has been skipped
CI / contract-tests (pull_request) Has been skipped
CI / e2e-tests (pull_request) Has been skipped
CI / comment-pr (pull_request) Has been skipped
CI / commit-types (pull_request) Has been skipped

This commit is contained in:
2026-01-22 19:04:25 +01:00
parent a165ac9b65
commit 5612df2e33
6 changed files with 321 additions and 118 deletions

View File

@@ -45,6 +45,7 @@
"glob": "^13.0.0",
"husky": "^9.1.7",
"jsdom": "^22.1.0",
"lint-staged": "^15.2.10",
"openapi-typescript": "^7.4.3",
"prettier": "^3.0.0",
"puppeteer": "^24.31.0",
@@ -128,6 +129,7 @@
"test:unit": "vitest run tests/unit",
"test:watch": "vitest watch",
"test:website:types": "vitest run --config vitest.website.config.ts apps/website/lib/types/contractConsumption.test.ts",
"verify": "npm run lint && npm run typecheck && npm run test:unit && npm run test:integration",
"typecheck": "npm run typecheck:targets",
"typecheck:grep": "npm run typescript",
"typecheck:root": "npx tsc --noEmit --project tsconfig.json",
@@ -139,10 +141,19 @@
"website:start": "npm run start --workspace=@gridpilot/website",
"website:type-check": "npm run type-check --workspace=@gridpilot/website"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"vitest related --run"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"version": "0.1.0",
"workspaces": [
"core/*",
"apps/*",
"testing/*"
]
}
}