We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3101829 commit 7ed4b23Copy full SHA for 7ed4b23
.github/workflows/deno.yml
@@ -11,6 +11,9 @@ on:
11
default: './src/client/'
12
type: string
13
14
+permissions:
15
+ checks: write
16
+
17
jobs:
18
test:
19
name: Test
@@ -32,13 +35,12 @@ jobs:
32
35
33
36
- name: Run tests
34
37
if: success() || failure()
- run: |
- mkdir reports
- 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
+ run: deno test -A --unstable --check --reload --doc --allow-none --junit-path="./report.xml"
+ - name: JUnit Report Action
41
+ uses: mikepenz/[email protected]
42
with:
- name: Deno Test Report
43
- path: ./report.xml
44
- reporter: jest-junit
+ report_paths: 'report.xml'
45
46
0 commit comments