Skip to content

Commit

Permalink
Merge branch 'main' into clientcert-in-memory-update
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshshanmugam committed Sep 12, 2024
2 parents e867d85 + 9600695 commit 6145794
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
node-version-file: .nvmrc
- run: npm ci
- run: npm run build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand All @@ -48,9 +48,9 @@ jobs:
node-version-file: .nvmrc
- run: npm ci
- run: npm run test:unit -- --ci --reporters=default --reporters=jest-junit
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: test-results
name: test-results-test
path: "**/junit.xml"
if-no-files-found: error

Expand All @@ -65,7 +65,7 @@ jobs:
cache: npm
node-version-file: .nvmrc
- run: npm ci
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
Expand All @@ -74,8 +74,8 @@ jobs:
working-directory: __tests__/e2e
env:
TERM: xterm # this is needed for tput
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: test-results
name: test-results-e2e-test
path: "**/junit.xml"
if-no-files-found: error
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
env:
TERM: xterm # this is needed for tput
- if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results
path: "**/junit_*.xml"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-reporter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: elastic/apm-pipeline-library/.github/actions/test-report@current
- uses: elastic/oblt-actions/test-report@v1
with:
artifact: test-results
name: ${{ github.event.workflow_run.name }}-test-report
artifact: /test-results(.*)/
name: '${{ github.event.workflow_run.name }} - Test Report $1'
path: "**/junit*.xml"
reporter: java-junit

0 comments on commit 6145794

Please sign in to comment.