Skip to content

feat: supplement the path of components and styles #22

feat: supplement the path of components and styles

feat: supplement the path of components and styles #22

Workflow file for this run

name: Test
on:
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18, latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install
run: pnpm i --frozen-lockfile
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint:test
- name: Build playground
run: pnpm dev:build