Skip to content

chore: docs unit testing with vitest #141

chore: docs unit testing with vitest

chore: docs unit testing with vitest #141

Workflow file for this run

name: Continuous Integration (JSX)
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [22, 24]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Installing project dependencies
run: |
npm ci
- name: Test
run: |
npm run test:jsx