Skip to content

docs: fix storybook link & theme #104

docs: fix storybook link & theme

docs: fix storybook link & theme #104

Workflow file for this run

name: CI Checks
on:
workflow_dispatch:
pull_request:
concurrency: ${{ github.ref }}
jobs:
lint:
strategy:
matrix:
node-version: [20]
name: Lint the code 🕵
runs-on: ubuntu-latest
steps:
- name: Check out the code 🗄
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
shell: bash
run: pnpm install --frozen-lockfile --prefer-offline
- name: Lint the code 🕵
run: pnpm all:lint
build:
strategy:
matrix:
node-version: [20]
name: Build code 🛠
runs-on: ubuntu-latest
steps:
- name: Check out the code 🗄
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
shell: bash
run: pnpm install --frozen-lockfile --prefer-offline
- name: Build code 🛠
run: pnpm all:build