Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ jobs:
cp .env.test.sample .env.test
- name: Unit tests pass
run: npm run test:unit:coverage
- name: Validate generated OpenAPI spec
run: npm run docs:validate
Comment thread
grdsdev marked this conversation as resolved.
env:
VECTOR_ENABLED: true
ICEBERG_ENABLED: true
- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@5cbfd81b66ca5d10c19b062c04de0199c215fb6e # v2.3.7
with:
Expand Down
251 changes: 251 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"migrations:types": "tsx src/scripts/migrations-types.ts",
"docs:export": "tsx ./src/scripts/export-docs.ts",
"docs:export-ui": "tsx ./src/scripts/export-docs-ui.ts",
"docs:validate": "tsx ./src/scripts/validate-openapi.ts",
"pprof:capture": "tsx src/scripts/pprof-client.ts",
"test:dummy-data": "tsx -r dotenv/config ./src/test/db/import-dummy-data.ts",
"test:unit": "vitest run --config vitest.unit.config.ts",
Expand Down Expand Up @@ -117,6 +118,7 @@
"devDependencies": {
"@aws-sdk/s3-presigned-post": "^3.1023.0",
"@biomejs/biome": "2.5.1",
"@hyperjump/json-schema": "^1.17.7",
Comment thread
ferhatelmas marked this conversation as resolved.
"@platformatic/runtime": "^3.63.0",
"@types/js-yaml": "^4.0.5",
"@types/json-bigint": "^1.0.4",
Expand Down
Loading