feat: added prerender for anchor tags #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Demo | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- ".github/workflows/demo.yaml" | |
- "apps/demo/**" | |
- "pnpm-lock.yaml" | |
- "package.json" | |
- "lib/**" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: latest | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: lts/* | |
cache: pnpm | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Prettier check | |
run: pnpm exec prettier --check . | |
- name: Build | |
run: pnpm run demo:build | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: "./apps/demo/dist" | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |