Skip to content

feat: first test suite #11

feat: first test suite

feat: first test suite #11

Workflow file for this run

name: PR Checks
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: 25
cache: npm
- name: Install dependencies
run: npm ci
- name: Run Biome check (no autofix)
run: npm run check:ci
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: 25
cache: npm
- name: Install dependencies
run: npm ci
- name: Build library
run: npm run build:lib
- name: Build demo
run: npm run build:demo