2022-06-21 21:19:00 -05:00
|
|
|
name: Master Codecov Report
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
concurrency: master-codecov-report
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
report-coverage:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Setup Node and pnpm
|
2022-07-19 17:42:42 -05:00
|
|
|
uses: silverhand-io/actions-node-pnpm-run-steps@v1.2.3
|
2022-06-21 21:19:00 -05:00
|
|
|
|
|
|
|
- name: Prepack
|
|
|
|
run: pnpm prepack
|
|
|
|
|
|
|
|
- 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
|