Skip to content

npm audit fix

npm audit fix #321

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 }}