Skip to content

DE-6498: Add Storybook #41

DE-6498: Add Storybook

DE-6498: Add Storybook #41

Workflow file for this run

name: CI Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Setup Node
with:
node-version: 16
cache: npm
- name: NPM Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test