Skip to content

Setup Storybook 📖! #46

Setup Storybook 📖!

Setup Storybook 📖! #46

Workflow file for this run

name: Build Check
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Run unit tests
run: npm run test