Skip to content

Commit

Permalink
feat: storybook build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Sembauke committed Apr 5, 2024
1 parent c489250 commit 4ea0991
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/storybook-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build Storybook
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8
run_install: false

- name: Install dependencies
run: pnpm install

- name: Build Storybook
run: pnpm run build-storybook

0 comments on commit 4ea0991

Please sign in to comment.