⬆️ Bump next from 14.2.7 to 14.2.21 in /apps/playground #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Vitest Report Coverage' | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/pnpm-setup-node | |
- name: 'Install Deps' | |
run: pnpm install --frozen-lockfile | |
- name: 'Build' | |
run: pnpm run build:p | |
- name: 'Test' | |
run: pnpm vitest --coverage.enabled true | |
- name: 'Report Coverage' | |
if: always() | |
uses: davelosert/vitest-coverage-report-action@v2 | |
- name: Upload results to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |