Skip to content

Commit 7ed4b23

Browse files
committed
Update deno.yml
1 parent 3101829 commit 7ed4b23

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

Diff for: .github/workflows/deno.yml

+11-9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ on:
1111
default: './src/client/'
1212
type: string
1313

14+
permissions:
15+
checks: write
16+
1417
jobs:
1518
test:
1619
name: Test
@@ -32,13 +35,12 @@ jobs:
3235

3336
- name: Run tests
3437
if: success() || failure()
35-
run: |
36-
mkdir reports
37-
deno test -A --unstable --check --reload --doc --allow-none --junit-path="./report.xml"
38-
39-
- name: Report tests (report.xml)
40-
uses: dorny/test-reporter@v1
38+
run: deno test -A --unstable --check --reload --doc --allow-none --junit-path="./report.xml"
39+
40+
- name: JUnit Report Action
41+
uses: mikepenz/[email protected]
4142
with:
42-
name: Deno Test Report
43-
path: ./report.xml
44-
reporter: jest-junit
43+
report_paths: 'report.xml'
44+
45+
46+

0 commit comments

Comments
 (0)