Skip to content

feat: add @pansy/use-pagination #135

feat: add @pansy/use-pagination

feat: add @pansy/use-pagination #135

Workflow file for this run

name: Deploy CI
env:
NODE_OPTIONS: --max-old-space-size=6144
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Setup Node.js'
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install pnpm
uses: pnpm/action-setup@v2
name: Install pnpm

Check failure on line 27 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Deploy CI

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 27, Col: 9): 'name' is already defined
id: pnpm-install
with:
version: latest
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Build Site
run: pnpm site
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
cname: hooks.xingkang.wang