Bump mermaid from 11.4.0 to 11.4.1 #29
Workflow file for this run
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 PR previews | |
permissions: write-all | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- closed | |
concurrency: | |
group: preview-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
deploy-preview: | |
name: deploy current branch to GitHub Pages | |
runs-on: ubuntu-latest | |
if: github.event.action != 'closed' | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- name: setup nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: install dependencies | |
run: npm ci | |
- name: build website | |
run: npm run build | |
env: | |
BASE_URL: /java-docs/pr-preview/pr-${{ github.event.number }} | |
- name: deploy preview | |
uses: rossjrw/pr-preview-action@v1 | |
with: | |
source-dir: ./build/ | |
undeploy-preview: | |
name: undeploy current branch from GitHub Pages | |
runs-on: ubuntu-latest | |
if: github.event.action == 'closed' | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- name: Deploy preview | |
uses: rossjrw/pr-preview-action@v1 |