release: version packages (#6850) #4542
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v5 | |
with: | |
pnpm-version: 9 | |
- name: Install playwright for element tests | |
working-directory: ./packages/elements | |
run: pnpm exec playwright install --with-deps | |
- 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 | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Codecov UI | |
uses: codecov/codecov-action@v4 | |
with: | |
flags: experience | |
directory: ./packages/experience | |
token: ${{ secrets.CODECOV_TOKEN }} |