We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85b1ead commit 05b2845Copy full SHA for 05b2845
1 file changed
.github/workflows/pr-builder.yml
@@ -124,7 +124,7 @@ jobs:
124
125
test:
126
name: 👾 Unit Test (TESTING)
127
- needs: [lint, typecheck]
+ # needs: [lint, typecheck]
128
runs-on: ubuntu-latest
129
strategy:
130
matrix:
@@ -169,7 +169,15 @@ jobs:
169
170
- name: 🃏 Run Jest & Collect Coverage
171
id: run-jest-test-and-coverage
172
- run: pnpm test
+ run: pnpm test:ci
173
+
174
+ - name: Upload `@asgardeo/js` coverage reports to Codecov
175
+ id: upload-asgardeo-js-coverage
176
+ uses: codecov/[email protected]
177
+ with:
178
+ files: ./packages/core/coverage/coverage-final.json
179
+ flags: '@asgardeo/js'
180
+ token: ${{ secrets.CODECOV_TOKEN }}
181
182
build:
183
name: 🚧 Build
0 commit comments