Skip to content

Add vitest and fix memory leak #5

Add vitest and fix memory leak

Add vitest and fix memory leak #5

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
- beta
concurrency:
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
test:
name: Lint, unit, build
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test