Skip to content

fix: TS build errors in v28-regression test (Notification type, unuse… #254

fix: TS build errors in v28-regression test (Notification type, unuse…

fix: TS build errors in v28-regression test (Notification type, unuse… #254

Workflow file for this run

name: Deploy Dashboard to GitHub Pages
on:
push:
branches: [main]
paths:
- "dashboard/**"
- ".github/workflows/pages.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: dashboard/package-lock.json
- name: Install dependencies
working-directory: dashboard
run: npm ci
- name: Build
working-directory: dashboard
env:
GITHUB_PAGES: "true"
run: |
npm run build
cp dist/index.html dist/404.html
- uses: actions/upload-pages-artifact@v3
with:
path: dashboard/dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4