chore(deps): update dependency eslint-config-prettier to v8.10.0 (#957) #2670
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@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: yarn | |
- name: Install packages | |
run: yarn install --immutable | |
- name: Generate code coverage report | |
run: yarn run coverage | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage/clover.xml | |
flags: unittests | |
fail_ci_if_error: true | |
verbose: true |