Skip to content

chore: change master reference to main (#156) #123

chore: change master reference to main (#156)

chore: change master reference to main (#156) #123

Workflow file for this run

name: Docs
on:
push:
branches:
- main
env:
FORCE_COLOR: 2
NODE: 20
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "${{ env.NODE }}"
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Build Storybook
run: npm run build-storybook
- name: Deploy Storybook
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
npm run deploy-storybook