Skip to content

fix lint and panel toggle fieldset #14

fix lint and panel toggle fieldset

fix lint and panel toggle fieldset #14

Workflow file for this run

name: Deploy Playground
on:
push:
branches:
- main
paths:
- 'playground/**'
- 'src/**'
- '.github/workflows/playground.yml'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build library
run: pnpm build
- name: Build playground
run: pnpm --dir playground build
- uses: actions/upload-pages-artifact@v5
with:
path: playground/dist
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5