Skip to content

v2.47.0

v2.47.0 #607

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Deploy Storybook
on:
push:
branches: [devel]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
env:
NODE_OPTIONS: "--openssl-legacy-provider"
- name: Build storybook
run: |
yarn --frozen-lockfile --silent
yarn build:css
yarn build-storybook
- name: Deploy storybook
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: storybook-static
clean: true