Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
feat: storybook github action
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiejaoude committed Oct 14, 2022
1 parent 203a408 commit ef40843
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Storybook
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: install dependencies
run: npm ci
- name: run build
run: npm run build-storybook

0 comments on commit ef40843

Please sign in to comment.