Skip to content
Merged
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 .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# Ensure npm 11.5.1 or later is installed
- run: npm install -g npm@latest
- run: npm i
- run: npm run build
- run: npm run build:prod
- run: npm publish

updateDocs:
Expand All @@ -36,7 +36,7 @@ jobs:
with:
ref: release
- run: npm ci
- run: npm run build
- run: npm run build:prod
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build
- run: npm run build:prod
- run: npm run lint
test:
runs-on: ubuntu-latest
Expand All @@ -23,5 +23,5 @@ jobs:
sudo apt-get update
sudo apt-get install -y postgresql-client-17
- run: npm ci
- run: npm run build
- run: npm run build:prod
- run: npm run test:ci
3 changes: 2 additions & 1 deletion cspell.words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ rechnung
bytea
pg_dumpall
PGPASSWORD
psql
psql
esnext
2 changes: 1 addition & 1 deletion jest.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const config = {
testEnvironment: 'node',
rootDir: 'src',
transform: {
'^.+.tsx?$': ['ts-jest', {}]
'^.+.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.eslint.json' }]
},
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
bail: false,
Expand Down
Loading
Loading