fix(listAtom): compute the dirty flag (#80) #215
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-docs | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
storybook: | |
name: 🎨 Storybook Build & Deploy to GH Pages | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/Iron | |
- name: Cache node_modules | |
id: cache-node-modules | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Install | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install | |
- name: Build Package | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: build | |
- name: Build Storybook Docs | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: build:docs | |
- name: Upload Storybook | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: storybook-static | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v2 | |
with: | |
token: ${{ github.token }} |