mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 16:57:22 +00:00
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 6 to 7. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6...v7) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
927 B
YAML
35 lines
927 B
YAML
name: Package Test
|
|
permissions:
|
|
contents: read
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
package:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
unit-test:
|
|
name: Unit Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 20
|
|
cache: yarn
|
|
- run: yarn install --immutable
|
|
- name: Cache for Turbo
|
|
uses: rharkor/caching-for-turbo@v2.4.2
|
|
with:
|
|
cache-prefix: turbo-cache-
|
|
- name: Unit Test
|
|
run: yarn test:unit --filter=./packages/${{ inputs.package }}
|
|
timeout-minutes: 1
|
|
- name: Collect and upload the coverage report
|
|
uses: codecov/codecov-action@v7
|
|
with:
|
|
files: ./packages/${{ inputs.package }}/coverage/lcov.info
|
|
flags: ${{ inputs.package }}-unit,${{ inputs.package }}
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|