Skip to content

feat: add main application layout with header, navigation, and footer #38

feat: add main application layout with header, navigation, and footer

feat: add main application layout with header, navigation, and footer #38

Workflow file for this run

name: Deploy Demo
on:
push:
branches: [main]
paths:
- 'examples/demo/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build Demo
run: pnpm --filter demo build
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: examples/demo/dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4