Add Better Support for multi-tsconfig projects (Like Veritas) #8
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: "Test" | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
branch: | |
- ${{ github.head_ref }} | |
- "main" | |
permissions: | |
# Required to checkout the code | |
contents: read | |
# Required to put a comment into the pull-request | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ matrix.branch }} | |
- name: "Install Node" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
- name: "Activate Corepack" | |
run: corepack enable | |
- name: "Move to newest version of Yarn" | |
run: yarn set version stable | |
- name: "Install Deps" | |
run: yarn install | |
- name: "Test" | |
run: yarn test | |
- name: "Upload Coverage" | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-${{ matrix.branch }} | |
path: coverage | |
report-coverage: | |
needs: test | |
runs-on: ubuntu-latest | |
permissions: | |
# Required to checkout the code | |
contents: read | |
# Required to put a comment into the pull-request | |
pull-requests: write | |
steps: | |
- name: "Download Coverage Artifacts" | |
uses: actions/download-artifact@v4 | |
with: | |
name: coverage-${{ github.head_ref }} | |
path: coverage | |
- uses: actions/download-artifact@v4 | |
with: | |
name: coverage-main | |
path: coverage-main | |
- name: "Report Coverage" | |
if: always() | |
uses: davelosert/vitest-coverage-report-action@v2 | |
with: | |
json-summary-compare-path: coverage-main/coverage-summary.json | |
vite-config-path: ./vite.config.ts |