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
9 changes: 9 additions & 0 deletions .github/actions/instrumentations/test/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Instrumentation Tests
description: Run instrumentation tests
inputs:
dd_api_key:
description: DD_API_KEY used to push test results
required: true
runs:
using: composite
steps:
Expand All @@ -11,3 +15,8 @@ runs:
- run: yarn test:instrumentations:ci
shell: bash
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
- uses: DataDog/junit-upload-github-action@762867566348d59ac9bcf479ebb4ec040db8940a # v2.0.0
if: always()
with:
api_key: ${{ inputs.dd_api_key }}
service: dd-trace-js-tests
9 changes: 9 additions & 0 deletions .github/actions/plugins/test-and-upstream/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Plugin and Upstream Tests
description: Run plugin tests and upstream test suite
inputs:
dd_api_key:
description: DD_API_KEY used to push test results
required: true
runs:
using: composite
steps:
Expand All @@ -20,3 +24,8 @@ runs:
uses: ./.github/actions/testagent/logs
with:
suffix: test-and-upstream-${{ github.job }}
- uses: DataDog/junit-upload-github-action@762867566348d59ac9bcf479ebb4ec040db8940a # v2.0.0
if: always()
with:
api_key: ${{ inputs.dd_api_key }}
service: dd-trace-js-tests
9 changes: 9 additions & 0 deletions .github/actions/plugins/test/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Plugin Tests
description: Run plugin tests
inputs:
dd_api_key:
description: DD_API_KEY used to push test results
required: true
runs:
using: composite
steps:
Expand All @@ -16,3 +20,8 @@ runs:
uses: ./.github/actions/testagent/logs
with:
suffix: test-${{ github.job }}
- uses: DataDog/junit-upload-github-action@762867566348d59ac9bcf479ebb4ec040db8940a # v2.0.0
if: always()
with:
api_key: ${{ inputs.dd_api_key }}
service: dd-trace-js-tests
9 changes: 9 additions & 0 deletions .github/actions/plugins/upstream/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Plugin Upstream Tests
description: Run upstream test suite
inputs:
dd_api_key:
description: DD_API_KEY used to push test results
required: true
runs:
using: composite
steps:
Expand All @@ -16,3 +20,8 @@ runs:
uses: ./.github/actions/testagent/logs
with:
suffix: upstream-${{ github.job }}
- uses: DataDog/junit-upload-github-action@762867566348d59ac9bcf479ebb4ec040db8940a # v2.0.0
if: always()
with:
api_key: ${{ inputs.dd_api_key }}
service: dd-trace-js-tests
15 changes: 15 additions & 0 deletions .github/workflows/aiguard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
- uses: ./.github/actions/install
- run: yarn test:aiguard:ci
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
- uses: DataDog/junit-upload-github-action@762867566348d59ac9bcf479ebb4ec040db8940a # v2.0.0
if: always()
with:
api_key: ${{ secrets.DD_API_KEY }}
service: dd-trace-js-tests

ubuntu:
runs-on: ubuntu-latest
Expand All @@ -50,6 +55,11 @@ jobs:
cache: 'true'
- run: yarn test:aiguard:ci
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
- uses: DataDog/junit-upload-github-action@762867566348d59ac9bcf479ebb4ec040db8940a # v2.0.0
if: always()
with:
api_key: ${{ secrets.DD_API_KEY }}
service: dd-trace-js-tests

integration:
strategy:
Expand All @@ -63,3 +73,8 @@ jobs:
with:
version: ${{ matrix.version }}
- run: yarn test:integration:aiguard
- uses: DataDog/junit-upload-github-action@762867566348d59ac9bcf479ebb4ec040db8940a # v2.0.0
if: always()
with:
api_key: ${{ secrets.DD_API_KEY }}
service: dd-trace-js-tests
15 changes: 15 additions & 0 deletions .github/workflows/apm-capabilities.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
- uses: ./.github/actions/install
- run: yarn test:trace:core:ci
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
- uses: DataDog/junit-upload-github-action@762867566348d59ac9bcf479ebb4ec040db8940a # v2.0.0
if: always()
with:
api_key: ${{ secrets.DD_API_KEY }}
service: dd-trace-js-tests

tracing-ubuntu:
runs-on: ubuntu-latest
Expand All @@ -38,6 +43,11 @@ jobs:
- uses: ./.github/actions/node/latest
- run: yarn test:trace:core:ci
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
- uses: DataDog/junit-upload-github-action@762867566348d59ac9bcf479ebb4ec040db8940a # v2.0.0
if: always()
with:
api_key: ${{ secrets.DD_API_KEY }}
service: dd-trace-js-tests

tracing-windows:
runs-on: windows-latest
Expand All @@ -49,3 +59,8 @@ jobs:
cache: 'true'
- run: yarn test:trace:core:ci
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
- uses: DataDog/junit-upload-github-action@762867566348d59ac9bcf479ebb4ec040db8940a # v2.0.0
if: always()
with:
api_key: ${{ secrets.DD_API_KEY }}
service: dd-trace-js-tests
Loading