style: apply prettier formatting for feat/tasks/board-fix (#3165) #6865
This file contains hidden or 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: Run tests and upload coverage | |
on: push | |
jobs: | |
test: | |
name: Run tests and collect coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Setup bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Use Node.js 24 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 24 | |
- name: Install dependencies | |
run: bun install | |
- name: Run tests | |
run: bun vitest run --coverage | |
- name: Upload results to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |