chore(deps): update pnpm to v11.22.0 (#1932) #5380
This file contains hidden or 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
| # Coverageのレポートを作成、送信します。 | |
| name: Coverage | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| push: | |
| branches: ["main"] | |
| jobs: | |
| coverage: | |
| name: Send code coverage report | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| - name: Install packages | |
| run: pnpm install --frozen-lockfile | |
| - name: Generate code coverage report | |
| run: pnpm coverage | |
| - uses: codecov/codecov-action@v7 | |
| with: | |
| files: ./packages/bot/coverage/clover.xml | |
| flags: unittests | |
| fail_ci_if_error: true | |
| verbose: true | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |