Skip to content

feat(test): moving unit testing over to vitest #2173

feat(test): moving unit testing over to vitest

feat(test): moving unit testing over to vitest #2173

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16
- 18
- 19
- 20
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install deps
run: npm ci
- name: Build dist
run: npm run build
- name: Run tests
run: npm test