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 d077837 commit edd75c0Copy full SHA for edd75c0
.github/workflows/push-deploy-website.yml
@@ -46,6 +46,20 @@ jobs:
46
- uses: webfactory/[email protected]
47
with:
48
ssh-private-key: ${{ secrets.DEPLOY_GITHUB_PAGES }}
49
+
50
+ - name: Run Tests and Upload Coverage to Codecov
51
+ run: |
52
+ pnpm install --frozen-lockfile
53
+ pnpm run test
54
+ env:
55
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
56
57
+ - name: Upload Coverage to Codecov
58
+ uses: codecov/codecov-action@v4
59
+ with:
60
+ token: ${{ secrets.CODECOV_TOKEN }}
61
+ verbose: true
62
63
- name: Deploy to GitHub Pages
64
env:
65
USE_SSH: true
@@ -62,3 +76,4 @@ jobs:
76
echo "Deployment failed"
77
exit 1
78
fi
79
0 commit comments