Skip to content

Commit

Permalink
test report 추출
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminuj authored Sep 12, 2024
1 parent 02606d9 commit 7e00c5a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:

permissions:
contents: read
actions: read
checks: write

jobs:
build:
Expand All @@ -16,6 +18,16 @@ jobs:

steps:
- uses: actions/checkout@v4
- run: npm ci # install packages
- run: npm test # run tests (configured to use jest-junit reporter)

- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: JEST Tests # Name of the check run which will be created
path: reports/jest-*.xml # Path to test results
reporter: jest-junit # Format of test results

- name: Set up JDK 11
uses: actions/setup-java@v4
Expand Down

0 comments on commit 7e00c5a

Please sign in to comment.