2022-06-21 21:19:00 -05:00
|
|
|
name: Master Codecov Report
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
2023-01-18 22:22:17 -05:00
|
|
|
concurrency: ${{ github.workflow }}
|
2022-06-21 21:19:00 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
report-coverage:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Setup Node and pnpm
|
2022-10-16 23:07:50 -05:00
|
|
|
uses: silverhand-io/actions-node-pnpm-run-steps@v2
|
2022-06-21 21:19:00 -05:00
|
|
|
|
2022-12-13 19:56:20 -05:00
|
|
|
- name: Build for test
|
|
|
|
run: pnpm -r build:test
|
2022-06-21 21:19:00 -05:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: pnpm ci:test
|
|
|
|
|
|
|
|
- name: Codecov Core
|
|
|
|
uses: codecov/codecov-action@v3
|
|
|
|
with:
|
|
|
|
flags: core
|
|
|
|
directory: ./packages/core
|
|
|
|
|
|
|
|
- name: Codecov UI
|
|
|
|
uses: codecov/codecov-action@v3
|
|
|
|
with:
|
|
|
|
flags: ui
|
|
|
|
directory: ./packages/ui
|