Skip to content

Consolidate scenarios #101

Consolidate scenarios

Consolidate scenarios #101

Workflow file for this run

name: pages
on:
push:
branches:
- main
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- closed
workflow_dispatch:
permissions:
contents: write # to write the built page to the branch
pull-requests: write # to leave a comment with the preview URL
concurrency:
# set separate concurrency groups for main and PR branches
group: ${{ github.event_name == 'pull_request' && format('pages-preview-{0}', github.event.pull_request.number) || 'pages-main' }}
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
fetch-depth: 0
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
with:
node-version: 22
cache: npm
- id: configure
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
- run: npm ci
- run: npm run build
env:
PAGES_BASE: ${{ github.event_name == 'pull_request' && format('pr-preview/pr-{0}', github.event.pull_request.number) || '' }}
# deploy the PR to a preview URL
- uses: rossjrw/pr-preview-action@9f77b1d057b494e662c50b8ca40ecc63f21e0887 # v1
if: ${{ github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork }}
with:
source-dir: .vitepress/dist
# deploy the build to GitHub Pages
- uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4
if: ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/main' }}
with:
folder: .vitepress/dist
branch: gh-pages
clean-exclude: pr-preview
force: false