Skip to content

Bump express from 4.18.2 to 4.19.2 #431

Bump express from 4.18.2 to 4.19.2

Bump express from 4.18.2 to 4.19.2 #431

Workflow file for this run

name: Publish UI Kit Storybook
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
cache: "npm"
cache-dependency-path: "package-lock.json"
- 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 }}