Skip to content

Add ci and convert to vitest #17

Add ci and convert to vitest

Add ci and convert to vitest #17

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [master]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Install dependencies
run: sudo apt-get install -y build-essential libgl1-mesa-dri libglapi-mesa \
libglew-dev libglu1-mesa-dev libosmesa6 \
libxi-dev mesa-utils pkg-config
- name: Install node dependencies
run: npm ci
- name: Build project
run: npm run build
- name: Run tests
run: xvfb-run npm test:unit
- name: Run E2e tests
run: xvfb-run npm test:e2e