We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea12ef9 commit 0aadfa2Copy full SHA for 0aadfa2
1 file changed
.github/workflows/integration-tests.yml
@@ -48,6 +48,14 @@ jobs:
48
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49
run: npm run test
50
51
+ # This job tests the GitHub Action by running it against the collector and validating the output.
52
+ # It compares the collected telemetry data with expected test data to ensure consistent structure.
53
+ #
54
+ # To update test data (.github/test-data/traces.json and metrics.json):
55
+ # 1. Run this workflow by pushing changes or creating a PR
56
+ # 2. After workflow completion, download the 'collector-logs' artifact from the GitHub Actions run page
57
+ # 3. Extract the artifact and copy traces.json and metrics.json to .github/test-data/ directory
58
+ # 4. Commit and push the updated test data files
59
test-action:
60
# This job should be last job in the workflow.
61
needs: test-typescript
0 commit comments