Skip to content

Feature/add custom components #88

Feature/add custom components

Feature/add custom components #88

Workflow file for this run

name: check
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
check:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node: ['16', '18', '20']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Docs build
run: pnpm docs:build