chore(deps): update vitest monorepo to v2.1.8 #1855
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: | |
push: | |
branches: | |
- main | |
- work | |
pull_request: | |
branches: | |
- main | |
jobs: | |
linter-and-unit: | |
name: Linter and Unit test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: | |
- 18 | |
- 20 | |
- 22 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Install project | |
run: pnpm install --frozen-lockfile | |
- name: Build project | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
NODE_OPTIONS: --max_old_space_size=8192 | |
run: pnpm run build | |
- name: Linter test | |
run: pnpm lint | |
- name: Unit test | |
env: | |
NODE_OPTIONS: --max_old_space_size=8192 | |
run: pnpm test | |
- name: Upload coverage | |
if: ${{ !cancelled() && github.ref == 'refs/heads/main' && matrix.node-version == '22' }} | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload test results | |
if: ${{ !cancelled() && github.ref == 'refs/heads/main' && matrix.node-version == '22' }} | |
uses: codecov/test-results-action@v1 | |
with: | |
file: ./coverage/test-report.junit.xml | |
token: ${{ secrets.CODECOV_TOKEN }} |