Skip to content

Bump vitest from 3.0.2 to 3.0.4 (#273) #901

Bump vitest from 3.0.2 to 3.0.4 (#273)

Bump vitest from 3.0.2 to 3.0.4 (#273) #901

Workflow file for this run

name: Tests
on: [pull_request, push]
jobs:
test:
name: JavaScript Test Action
runs-on: ubuntu-latest
strategy:
matrix:
node: [20, 22, 23]
steps:
- uses: actions/checkout@master
- name: Setup Node v${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Yarn install
run: yarn install --frozen-lockfile
- name: Run JavaScript Tests
run: yarn build
- name: Run JavaScript Tests
run: yarn test