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
6 changes: 3 additions & 3 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": [
"@commitlint/config-conventional"
]
"extends": [
"@commitlint/config-conventional"
]
}
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: push

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand All @@ -19,7 +19,7 @@ jobs:
run: npm run build

test:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
Expand All @@ -36,14 +36,14 @@ jobs:
run: npm ci

- name: Test
run: npm run test && npm run lcov-report
run: npm run test

- uses: coverallsapp/github-action@master
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

image:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
contents: write
issues: write
pull-requests: write
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions cfg/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,10 @@
"kafka": {
"provider": "kafka",
"groupId": "restore-ordering-srv",
"retries": 2,
"kafka": {
"clientId": "restore-ordering-srv",
"retries": 2,
"brokers": [
"localhost:29092"
]
Expand Down
2 changes: 2 additions & 0 deletions cfg/config_test.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
"kafka": {
"provider": "kafka",
"groupId": "restore-ordering-srv-test",
"retries": 0,
"kafka": {
"retries": 0,
"clientId": "restore-ordering-srv-test",
"brokers": [
"localhost:29092"
Expand Down
Loading
Loading