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 7875b0b commit 6f9dbacCopy full SHA for 6f9dbac
1 file changed
.github/workflows/test.yml
@@ -13,6 +13,11 @@ on:
13
- '.github/workflows/test.yml'
14
workflow_dispatch: # Manual trigger
15
16
+permissions:
17
+ contents: read
18
+ actions: read
19
+ pull-requests: write
20
+
21
jobs:
22
test:
23
name: Run Tests
@@ -38,4 +43,11 @@ jobs:
38
43
SENTRY_TEST_AUTH_TOKEN: ${{ secrets.SENTRY_TEST_AUTH_TOKEN }}
39
44
SENTRY_TEST_ORG: ${{ secrets.SENTRY_TEST_ORG }}
40
45
SENTRY_TEST_PROJECT: ${{ secrets.SENTRY_TEST_PROJECT }}
41
- run: bun test
46
+ run: bun test --reporter=junit --reporter-outfile=./report.junit.xml --coverage --coverage-reporter=lcov
47
48
+ - name: Upload Coverage
49
+ uses: getsentry/codecov-action@main
50
+ with:
51
+ token: ${{ secrets.GITHUB_TOKEN }}
52
+ post-pr-comment: true
53
0 commit comments