Skip to content

feat(docs): add search panel translation #1223

feat(docs): add search panel translation

feat(docs): add search panel translation #1223

Workflow file for this run

name: Unit Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: pnpm
- name: Setup
run: pnpm i -g @antfu/ni
- name: Install
run: nci
- name: Build
run: nr build
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: sxzz
- name: Lint
run: nr lint
- name: Type Check
run: nr typecheck
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [16, 18]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- name: Set node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Setup
run: pnpm i -g @antfu/ni
- name: Install
run: nci
- name: Build
run: nr build
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: sxzz
- name: Unit Test
run: nr test
- name: Build Playground
run: pnpm run --filter "./playground/*" --parallel build
if: ${{ matrix.os == 'ubuntu-latest' }}