Skip to content

feat: Fix sphinx gallery serializing bug #9

feat: Fix sphinx gallery serializing bug

feat: Fix sphinx gallery serializing bug #9

Workflow file for this run

name: Build
on:
pull_request:
branches: ['*']
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint code
run: npm run lint
- name: Check formatting
run: npm run format:check
- name: Build library
run: npm run build
- name: Run tests
run: npm test
- name: Build demo
run: |
npm ci --prefix demo
npm run demo:build