Skip to content

simplify CI

simplify CI #155

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: '24.x'
cache: 'npm'
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run ci