Skip to content

Added Storybook integration #225

Added Storybook integration

Added Storybook integration #225

Workflow file for this run

name: Code Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Check codebase (lint and typecheck)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18.x
- uses: pnpm/[email protected]
with:
version: 7
- name: Get pnpm store directory
id: pnpm-cache
run: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('./pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
- name: TypeCheck
run: pnpm run typecheck