Skip to content

Commit

Permalink
initial workflow to build storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
daveboster authored Dec 13, 2023
1 parent f684097 commit d94a378
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x] # [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Run unit tests
run: |
npm install
- name: Build Storybook
run: |
npm run build-storybook

0 comments on commit d94a378

Please sign in to comment.