Skip to content

fix: 如果没有slug删完了,用标题重新生成 #198

fix: 如果没有slug删完了,用标题重新生成

fix: 如果没有slug删完了,用标题重新生成 #198

Workflow file for this run

name: build test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: setup cache
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node
- name: Install dependencies
run: npm ci
- name: lint
run: npm run lint
- name: Build
run: npm run build