fix: allow plugins to be explicit about being re-exported from index #1910
Workflow file for this run
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: Coverage | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- docs/** | |
pull_request: | |
paths-ignore: | |
- docs/** | |
concurrency: | |
group: ${{ github.workflow }}=${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
upload: | |
name: Upload | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8.15.7 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build library | |
run: pnpm build | |
- name: Run test coverage | |
run: pnpm test:coverage | |
- name: Upload code coverage to codecov.io | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: ./packages/openapi-ts/coverage | |
flags: unittests | |
fail_ci_if_error: true |