fix: remove stxprice suspense #75
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 Publish Storybook to GitHub Pages | |
on: | |
push: | |
branches: | |
- 'main' | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18.9.0' | |
- name: Install pnpm | |
run: npm install -g [email protected] | |
- uses: bitovi/[email protected] | |
with: | |
install_command: pnpm i | |
build_command: pnpm build-storybook | |
path: storybook-static | |
checkout: false |