From 58966001809e4aaf1b841359be84f7a286d0668e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 23 Jan 2026 20:41:05 +0000 Subject: [PATCH 1/2] Initial plan From db6cda81b1fb22acd1da81a1a966bc87c6ab0098 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 23 Jan 2026 20:44:28 +0000 Subject: [PATCH 2/2] Add mkdocs documentation build to deploy-playground workflow Co-authored-by: Sander-Toonen <5106372+Sander-Toonen@users.noreply.github.com> --- .github/workflows/deploy-playground.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/deploy-playground.yml b/.github/workflows/deploy-playground.yml index 15ef7a7..138f301 100644 --- a/.github/workflows/deploy-playground.yml +++ b/.github/workflows/deploy-playground.yml @@ -35,6 +35,17 @@ jobs: - name: Build UMD bundle run: npm run build:umd + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: '3.x' + + - name: Install mkdocs + run: pip install mkdocs-material==9.7.1 + + - name: Build documentation + run: mkdocs build + - name: Prepare playground files run: | mkdir -p _site/dist @@ -43,6 +54,7 @@ jobs: cp samples/language-service-sample/examples.js _site/ cp samples/language-service-sample/styles.css _site/ cp dist/bundle.js _site/dist/ + cp -r site _site/docs - name: Setup Pages uses: actions/configure-pages@v5