Skip to content

chore(deps-dev): bump vitest from 2.1.9 to 3.2.6 (#1246) #819

chore(deps-dev): bump vitest from 2.1.9 to 3.2.6 (#1246)

chore(deps-dev): bump vitest from 2.1.9 to 3.2.6 (#1246) #819

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Test
on: ["push", "pull_request"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v6
with:
node-version: 24
- name: yarn install
run: yarn --frozen-lockfile
- name: test
run: yarn test
- name: coverage test
run: yarn coverage
- name: perf test
run: yarn test:perf
- uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}