Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/publish-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: publish-demo-to-github-pages

on:
push:
branches: [ "main" ]
branches: ["main"]
workflow_dispatch:

jobs:
Expand All @@ -17,13 +17,13 @@ jobs:
- name: Check out
uses: actions/checkout@v6

- name: Use Node v22
- name: Use Node v24
uses: actions/setup-node@v6
with:
node-version: '24.x'
cache: 'npm'
node-version: "24.x"
cache: "npm"

- name: npm ci and npm run build
- name: npm ci and npm run build files for ghpages
run: |
npm ci
npm run build:ghpages
Expand Down
Loading
Loading