Skip to content

test: migrate to vitest #31

test: migrate to vitest

test: migrate to vitest #31

Workflow file for this run

name: Tests
on:
push:
branches: main
pull_request:
branches: main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18, 20]
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm i -g npm
- run: node --version
- run: npm --version
- run: npm ci
- run: npm run test