Skip to content

✨ feat: 补全类型声明 #6

✨ feat: 补全类型声明

✨ feat: 补全类型声明 #6

Workflow file for this run

name: CICD
on:
push:
branches:
- main
paths:
- 'package.json'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: 安装 Node.js
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
# - name: 安装 pnpm
# uses: pnpm/action-setup@v2
# id: pnpm-install
# with:
# version: 8
# run_install: false
# - name: 获取 pnpm 缓存路径
# id: pnpm-cache
# shell: bash
# run: |
# echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
# - name: 设置 pnpm 缓存
# uses: actions/cache@v3
# with:
# path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
# restore-keys: |
# ${{ runner.os }}-pnpm-store-
# - name: 安装 rollup
# run: pnpm i -g rollup
# - name: 安装 TS
# run: pnpm i -g typescript
# - name: 安装依赖
# run: pnpm i
# - name: 构建
# run: pnpm build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}