Skip to content

Upgrade storybook

Upgrade storybook #1

Workflow file for this run

name: Tests
on:
push:
branches: ['master']
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- run: pnpm install
- name: Build nivo packages
run: make pkgs-build
- run: make pkgs-lint
- run: make pkgs-test
# Make sure that we can build the website
- run: make website-build