mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
9cddd78adc
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
35 lines
694 B
YAML
35 lines
694 B
YAML
name: Master Codecov Report
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
|
|
concurrency: ${{ github.workflow }}
|
|
|
|
jobs:
|
|
report-coverage:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup Node and pnpm
|
|
uses: silverhand-io/actions-node-pnpm-run-steps@v4
|
|
|
|
- name: Build for test
|
|
run: pnpm -r build:test
|
|
|
|
- name: Test
|
|
run: pnpm ci:test
|
|
|
|
- name: Codecov Core
|
|
uses: codecov/codecov-action@v4
|
|
with:
|
|
flags: core
|
|
directory: ./packages/core
|
|
|
|
- name: Codecov UI
|
|
uses: codecov/codecov-action@v4
|
|
with:
|
|
flags: experience
|
|
directory: ./packages/experience
|