feat(protable): SJIP-764 add clear filters (#419) #27
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: Build and Deploy Storybook | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- master | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Install dependencies and build 🔧 | |
run: | # Install npm packages and build the Storybook files | |
cd packages/ui | |
npm install | |
npm run build | |
cd ../../storybook | |
npm install | |
npm run build-storybook | |
- name: Deploy 🚀 | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' # This will prevent the Deploy from being triggered in PRs | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: storybook | |
folder: storybook/storybook-static # The folder that the build-storybook script generates files. | |
clean: true # Automatically remove deleted files from the deploy branch | |
target-folder: docs # The folder that we serve our Storybook files from |