-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into conti/add-aws-xray-header-context-extraction
- Loading branch information
Showing
1,028 changed files
with
76,218 additions
and
17,153 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: Install dependencies | ||
runs: | ||
using: composite | ||
steps: # retry in case of server error from registry | ||
- run: yarn install --ignore-engines || yarn install --ignore-engines | ||
shell: bash | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Plugin Tests | ||
runs: | ||
using: composite | ||
steps: | ||
- uses: ./.github/actions/testagent/start | ||
- uses: ./.github/actions/node/setup | ||
- uses: ./.github/actions/install | ||
- uses: ./.github/actions/node/oldest | ||
- run: yarn test:plugins:ci | ||
shell: bash | ||
- run: yarn test:plugins:upstream | ||
shell: bash | ||
- uses: ./.github/actions/node/latest | ||
- run: yarn test:plugins:ci | ||
shell: bash | ||
- run: yarn test:plugins:upstream | ||
shell: bash | ||
- uses: codecov/codecov-action@v3 | ||
- if: always() | ||
uses: ./.github/actions/testagent/logs |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Plugin Tests | ||
runs: | ||
using: composite | ||
steps: | ||
- uses: ./.github/actions/testagent/start | ||
- uses: ./.github/actions/node/setup | ||
- uses: ./.github/actions/install | ||
- uses: ./.github/actions/node/oldest | ||
- run: yarn test:plugins:ci | ||
shell: bash | ||
- uses: ./.github/actions/node/latest | ||
- run: yarn test:plugins:ci | ||
shell: bash | ||
- uses: codecov/codecov-action@v3 | ||
- if: always() | ||
uses: ./.github/actions/testagent/logs |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Plugin Upstream Tests | ||
runs: | ||
using: composite | ||
steps: | ||
- uses: ./.github/actions/testagent/start | ||
- uses: ./.github/actions/node/setup | ||
- uses: ./.github/actions/install | ||
- uses: ./.github/actions/node/oldest | ||
- run: yarn test:plugins:upstream | ||
shell: bash | ||
- uses: ./.github/actions/node/latest | ||
- run: yarn test:plugins:upstream | ||
shell: bash | ||
- uses: codecov/codecov-action@v3 | ||
- if: always() | ||
uses: ./.github/actions/testagent/logs |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: All Green | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
|
||
all-green: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
checks: read | ||
contents: read | ||
steps: | ||
- uses: wechuli/allcheckspassed@v1 | ||
with: | ||
retries: 20 # once per minute, some checks take up to 15 min | ||
checks_exclude: devflow.* |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Datadog Static Analysis | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [master] | ||
|
||
jobs: | ||
static-analysis: | ||
runs-on: ubuntu-latest | ||
name: Datadog Static Analyzer | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Check code meets quality and security standards | ||
id: datadog-static-analysis | ||
uses: DataDog/datadog-static-analyzer-github-action@v1 | ||
with: | ||
dd_api_key: ${{ secrets.DD_STATIC_ANALYSIS_API_KEY }} | ||
dd_app_key: ${{ secrets.DD_STATIC_ANALYSIS_APP_KEY }} | ||
dd_service: dd-trace-js | ||
dd_env: ci | ||
dd_site: datadoghq.com | ||
cpu_count: 2 |
Oops, something went wrong.