Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ PORT=1337
LOG_LEVEL=debug
ALLOWED_ORIGINS=
APP_VERSION=dev
# SSL_KEY=/path/to/server.key
# SSL_CERT=/path/to/server.crt
# SSL_KEY_FILE=/path/to/server.key
# SSL_CERT_FILE=/path/to/server.crt
# HTTPS_PORT=1338
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,12 @@ jobs:
- name: Typecheck
run: |
npm run typecheck
- name: Coverage
- name: Unit tests with coverage
run: |
npm run coverage
npm run test:coverage
- name: Integration tests
run: |
npm run test:integration

# Summary job that all matrix jobs must pass
# Used as the required status check in branch protection
Expand Down
1 change: 1 addition & 0 deletions eslint.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export default [
'coverage',
'tests',
'vitest.config.ts',
'vitest.config.integration.ts',
'eslint.config.ts',
],
},
Expand Down
Loading
Loading