feat: remove stories #326
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#name: Storybook | |
#on: | |
# push: | |
# branches: | |
# - main # if any push happens on branch `main`, run this workflow. You could also add `paths` to detect changes in specific folder | |
# | |
#jobs: | |
# build-and-deploy: | |
# runs-on: ubuntu-latest | |
# if: ${{ !contains(github.event.head_commit.message, 'chore(release)') }} | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - name: Use Node.js 18 | |
# uses: actions/setup-node@v1 | |
# with: | |
# node-version: 18 | |
# - name: Install and Build | |
# run: | | |
# npm install | |
# npm run build | |
# npm run build-storybook | |
# | |
# - name: Deploy | |
# uses: JamesIves/[email protected] | |
# with: | |
# GITHUB_TOKEN: ${{ secrets.GHPAGES_TOKEN }} | |
# branch: Documentation | |
# folder: docs |