feat: add landing page #5
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 to GitHub Pages | |
on: | |
push: | |
paths: ['stories/**', 'src/components/**'] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ๐๏ธ | |
uses: actions/checkout@v3 | |
- name: Set up Node.js โ | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.11.1 | |
- name: Setup pnpm โ๏ธ | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Install and Deploy ๐ | |
run: | | |
pnpm install | |
pnpm deploy-storybook |