Skip to content
Closed
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
22 changes: 14 additions & 8 deletions .github/workflows/ci-cd-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,11 @@ on:
DOCKER_PASSWORD:
required: true
inputs:
uploadJarArtifact:
checkAndTestOutsideDocker:
required: false
type: boolean
default: false
jarArtifactName:
required: false
type: string
jarArtifactPath:
required: false
type: string
checkAndTestOutsideDocker:
codeCoverageEnabled:
required: false
type: boolean
default: false
Expand Down Expand Up @@ -52,6 +46,18 @@ jobs:
if: ${{ inputs.checkAndTestOutsideDocker }}
run: npm run check-and-build

- name: Upload coverage reports to Codecov
if: ${{ codeCoverageEnabled }}
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Upload test results to Codecov
if: ${{ codeCoverageEnabled && !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Lowercase Docker Image Name
run: |
echo "IMAGE_NAME=${IMAGE_NAME_MIXED_CASE,,}" >> "${GITHUB_ENV}"
Expand Down