Skip to content

Set up Storybook and use that for documentation #13

Set up Storybook and use that for documentation

Set up Storybook and use that for documentation #13

Workflow file for this run

name: Build
on:
pull_request_target:
branches:
main
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Set up yarn
run: corepack enable && yarn set version 3.3.0
- name: Install
run: yarn install
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Build Storybook
run: yarn build-storybook