-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b907a25
commit 40fd1e2
Showing
5 changed files
with
146 additions
and
38 deletions.
There are no files selected for viewing
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,12 @@ | ||
name: Example | ||
|
||
on: [push] | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Run CTRF annotations | ||
run: npx github-actions-ctrf ctrf-report.json |
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,80 @@ | ||
{ | ||
"results": { | ||
"tool": { | ||
"name": "jest" | ||
}, | ||
"summary": { | ||
"tests": 10, | ||
"passed": 5, | ||
"failed": 2, | ||
"pending": 1, | ||
"skipped": 1, | ||
"other": 1, | ||
"start": 1706644023, | ||
"stop": 1706644048 | ||
}, | ||
"tests": [ | ||
{ | ||
"name": "should be able to login", | ||
"status": "passed", | ||
"duration": 1200 | ||
}, | ||
{ | ||
"name": "should display profile information", | ||
"status": "failed", | ||
"duration": 800, | ||
"message": "Assertion Failure: profile mismatch", | ||
"trace": "ProfileTest.js:45" | ||
}, | ||
{ | ||
"name": "should be able to update profile", | ||
"status": "passed", | ||
"duration": 1200, | ||
"flaky": true, | ||
"retries": 2 | ||
}, | ||
{ | ||
"name": "should be able to logout", | ||
"status": "skipped", | ||
"duration": 0 | ||
}, | ||
{ | ||
"name": "should validate user settings", | ||
"status": "passed", | ||
"duration": 1100 | ||
}, | ||
{ | ||
"name": "should fail to update profile on network failure", | ||
"status": "failed", | ||
"duration": 900, | ||
"message": "Network Timeout", | ||
"trace": "ProfileUpdateTest.js:60" | ||
}, | ||
{ | ||
"name": "should load user data", | ||
"status": "pending", | ||
"duration": 0 | ||
}, | ||
{ | ||
"name": "should handle session timeouts", | ||
"status": "passed", | ||
"duration": 950, | ||
"flaky": true, | ||
"retries": 1 | ||
}, | ||
{ | ||
"name": "should clean up user session on logout", | ||
"status": "other", | ||
"duration": 1050 | ||
}, | ||
{ | ||
"name": "should allow user to change password", | ||
"status": "passed", | ||
"duration": 1300, | ||
"flaky": true, | ||
"retries": 3 | ||
} | ||
] | ||
} | ||
} | ||
|
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