Skip to content

chore(deps): update storybook monorepo #8325

chore(deps): update storybook monorepo

chore(deps): update storybook monorepo #8325

Workflow file for this run

name: Node.js CI
'on':
push:
branches:
- master
- beta
- renovate/**
pull_request:
types:
- opened
- synchronize
env:
FORCE_COLOR: 1
NPM_CONFIG_COLOR: always
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version-file: .nvmrc
cache: npm
- run: npm clean-install
- run: npm test
- name: Upload coverage data to Codecov
run: npm run coverage:report
release:
needs:
- verify
uses: >-
form8ion/.github/.github/workflows/release-package-semantic-release-19.yml@master
secrets:
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
storybook:
if: github.ref == 'refs/heads/master'
needs: verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version-file: .nvmrc
cache: npm
- run: npm clean-install
- run: npm run build
- name: Configure git user for relase to GitHub Pages
run: |
git config --global user.name "${{ secrets.GIT_NAME }}"
git config --global user.email "${{ secrets.GIT_EMAIL }}"
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: dist/storybook/