Skip to content

Enter alpha mode

Enter alpha mode #8

Workflow file for this run

name: Pages
on:
workflow_dispatch:
push:
branches: ['main', 'v4']
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: yarn
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Install project dependencies
run: yarn install
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
- name: Build Documentation
run: yarn docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: public
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2