aws: add DD_TRACE_FORCE_AWS_PROPAGATION env var #2070
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Debugger | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
schedule: | |
- cron: '0 4 * * *' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/testagent/start | |
- uses: ./.github/actions/node/setup | |
- uses: ./.github/actions/install | |
- uses: ./.github/actions/node/18 | |
- run: yarn test:debugger:ci | |
- run: yarn test:integration:debugger | |
- uses: ./.github/actions/node/20 | |
- run: yarn test:debugger:ci | |
- run: yarn test:integration:debugger | |
- uses: ./.github/actions/node/latest | |
- run: yarn test:debugger:ci | |
- run: yarn test:integration:debugger | |
- if: always() | |
uses: ./.github/actions/testagent/logs | |
- uses: codecov/codecov-action@v3 |