Skip to content

Add integration tests using vitest #203

Add integration tests using vitest

Add integration tests using vitest #203

Workflow file for this run

name: Test
on:
push:
pull_request:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
operating-system:
- ubuntu-latest
- windows-latest
node-version:
- 20.x
- 22.x
- 24.x
steps:
- name: Checkout main branch
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Enable Node.js Corepack
run: corepack enable
- name: Yarn install
run: yarn install
- name: Test
run: yarn test