Skip to content

chore: upgrade storybook to v8 and fix warnings #6

chore: upgrade storybook to v8 and fix warnings

chore: upgrade storybook to v8 and fix warnings #6

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Sanity Checks Workflow
on:
push:
branches:
- main
jobs:
'sanity-checks':
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.11.0'
- name: Install dependencies
run: yarn install --immutable
- name: Typecheck
run: yarn typecheck
- name: Lint Codebase
run: yarn lint
- name: Test::unit
run: yarn test
- name: Build
run: yarn build