2022-06-22 10:19:00 +08:00
|
|
|
name: Master Codecov Report
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
2023-01-19 11:22:17 +08:00
|
|
|
concurrency: ${{ github.workflow }}
|
2022-06-22 10:19:00 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
report-coverage:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-09-05 16:13:24 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-06-22 10:19:00 +08:00
|
|
|
|
|
|
|
- name: Setup Node and pnpm
|
2023-12-26 12:35:11 +08:00
|
|
|
uses: silverhand-io/actions-node-pnpm-run-steps@v4
|
2022-06-22 10:19:00 +08:00
|
|
|
|
2022-12-14 08:56:20 +08:00
|
|
|
- name: Build for test
|
|
|
|
run: pnpm -r build:test
|
2022-06-22 10:19:00 +08:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: pnpm ci:test
|
|
|
|
|
|
|
|
- name: Codecov Core
|
2024-02-01 12:04:42 +08:00
|
|
|
uses: codecov/codecov-action@v4
|
2022-06-22 10:19:00 +08:00
|
|
|
with:
|
|
|
|
flags: core
|
|
|
|
directory: ./packages/core
|
|
|
|
|
|
|
|
- name: Codecov UI
|
2024-02-01 12:04:42 +08:00
|
|
|
uses: codecov/codecov-action@v4
|
2022-06-22 10:19:00 +08:00
|
|
|
with:
|
2023-09-20 11:49:51 +08:00
|
|
|
flags: experience
|
|
|
|
directory: ./packages/experience
|