Skip to content

fix(kanban): enhance infinite scroll logic in KanbanColumn to prevent… #92

fix(kanban): enhance infinite scroll logic in KanbanColumn to prevent…

fix(kanban): enhance infinite scroll logic in KanbanColumn to prevent… #92

name: Deploy Storybook
on:
push:
branches:
- master
permissions:
contents: write
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: "1.3.1"
- name: Cache Bun dependencies
uses: actions/cache@v4
with:
path: |
~/.bun/install/cache
node_modules
key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-
- name: Install dependencies
run: bun install --frozen-lockfile --ignore-scripts
- name: Build Storybook
run: bun run build-storybook
- name: Upload Storybook artifact
uses: actions/upload-pages-artifact@v3
with:
path: storybook-static
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: Storybook
url: https://storybook.tracktor.fr
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4