Skip to content

new PR demo on gh pages #9234

new PR demo on gh pages

new PR demo on gh pages #9234

Workflow file for this run

name: PR Demo CI
on:
pull_request:
push:
branches: [master]
permissions:
contents: write
pull-requests: write
statuses: write
checks: write
pages: write
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
build:
name: Build demo on PR
environment: pull_request_unsafe
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
- name: Use Node.js
uses: ./.github/actions/setup-node
- name: cache for storybook
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 #v4.0.2
with:
path: packages/*/node_modules
key: ${{ runner.os }}-storybook-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-storybook-
- name: Install
working-directory: ./
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_READ_TOKEN }}
run: yarn install --frozen-lockfile
- name: Build
run: yarn test:demo
env:
STORYBOOK_FIGMA_ACCESS_TOKEN: ${{ secrets.STORYBOOK_FIGMA_ACCESS_TOKEN }}
- name: Checkout demo branch
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 #v3.5.3
with:
path: demo
ref: gh-pages
- name: Add demo and commit it
# symlink creation : workaround to be able to use service worker on storybook both in local and via github pages deployment
run: |
cd demo && git rm -rf --ignore-unmatch ${{ github.event.number }} && cd ..
mkdir -p ./demo/${{ github.event.number }}
cp -R storybook-static/* ./demo/${{ github.event.number }}/
cd demo && git add .
- name: Commit demo for gh-pages
uses: actions-js/push@156f2b10c3aa000c44dbe75ea7018f32ae999772 #v1.4
with:
directory: './demo'
github_token: ${{ secrets.GITHUB_TOKEN }}
message: 'doc: update demo from ${{ github.event.number }}'
branch: gh-pages
- name: Create comment
uses: peter-evans/create-or-update-comment@c6c9a1a66007646a28c153e2a8580a5bad27bcfa #v3.0.2
with:
issue-number: ${{ github.event.number }}
body: |
Storybook for this PR deployed on this [github page](https://crispy-disco-7v8q1pm.pages.github.io/${{ github.event.number }})