Skip to content

X2-7706 chore(helpers): resolves [unicorn/prefer-optional-catch-bindi… #12

X2-7706 chore(helpers): resolves [unicorn/prefer-optional-catch-bindi…

X2-7706 chore(helpers): resolves [unicorn/prefer-optional-catch-bindi… #12

Workflow file for this run

name: Publish to GitHub Pages
on:
push:
branches:
- "**" # matches every branch
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v1
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Generate storybook
run: npm run build:storybook
- name: Publish generated content to GitHub Pages
uses: tsunematsu21/[email protected]
with:
dir: storybook-static
branch: gh-pages
token: ${{ secrets.STORYBOOK_PUBLISH_TOKEN }}