chore(deps): update oven/bun docker tag to v1.1.31 (#1398) #4053
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
# 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@v4 | |
- uses: oven-sh/setup-bun@v2 | |
- name: Install packages | |
run: bun install --frozen-lockfile | |
- name: Generate code coverage report | |
run: bun coverage | |
- uses: codecov/codecov-action@v4 | |
with: | |
files: ./packages/bot/coverage/clover.xml | |
flags: unittests | |
fail_ci_if_error: true | |
verbose: true | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |