Skip to content

Refactor + cleanup vite config #110

Refactor + cleanup vite config

Refactor + cleanup vite config #110

Workflow file for this run

name: Build Check
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Install testing dependency
# fix for CI, there should be a better way to fix this
run: npm install "@rollup/rollup-linux-x64-gnu"
- name: Run unit tests
run: npm run test