Skip to content

docs: 新功能配套文档 #5

docs: 新功能配套文档

docs: 新功能配套文档 #5

Workflow file for this run

name: Node CI
on:
pull_request:
branches:
- master
permissions:
contents: read # to fetch code (actions/checkout)
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Cache pnpm modules and build
uses: actions/cache@v3
with:
path: |
node_modules
build/taro-docs
key: ${{ runner.os }}-github
restore-keys: |
${{ runner.os }}-
- name: install
uses: pnpm/action-setup@v2
with:
version: 7
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: Build
run: pnpm run build:github