Skip to content

feat: non-blocking initSession() API with proper status events (#230) #149

feat: non-blocking initSession() API with proper status events (#230)

feat: non-blocking initSession() API with proper status events (#230) #149

Workflow file for this run

name: Documentation
on:
workflow_dispatch:
push:
branches:
- main
permissions:
pages: write
id-token: write
jobs:
Documentation:
if: ${{ !contains(github.event.commits[0].message, '[ci-ignore]') }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install
run: |
npm ci && npm --prefix examples ci
- name: Build Documentation
run: |
npm run build:demo
- name: Upload Artifact
uses: actions/upload-pages-artifact@v4
with:
path: dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4