We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad2ae4e commit 0aedf4dCopy full SHA for 0aedf4d
.github/workflows/Frontend.yml
@@ -66,6 +66,13 @@ jobs:
66
files: ./_meta/_coverage/clover.xml
67
fail_ci_if_error: true
68
69
+ - name: Upload test results to Codecov
70
+ if: ${{ !cancelled() }}
71
+ uses: codecov/test-results-action@v1
72
+ with:
73
+ files: ./_meta/junit_frontend.xml
74
+ token: ${{ secrets.CODECOV_TOKEN }}
75
+
76
Prettier:
77
runs-on: ubuntu-latest
78
name: Code Style Check
vitest.config.ts
@@ -10,6 +10,8 @@ export default defineConfig({
10
'packages/**/app/assets/**/*.*',
11
'packages/**/src/**/*.*'
12
],
13
- }
+ },
14
+ reporters: ['default', 'junit'],
15
+ outputFile: './_meta/junit_frontend.xml'
16
}
17
})
0 commit comments