chore: add ci action and update release it config
and sync openapi.json
This commit is contained in:
parent
deceafad4f
commit
1c8b4d9285
42
.github/workflows/ci.yaml
vendored
Normal file
42
.github/workflows/ci.yaml
vendored
Normal file
@ -0,0 +1,42 @@
|
||||
name: "CI"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- "src/**"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Install Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: 8
|
||||
run_install: false
|
||||
- name: Get pnpm store directory
|
||||
shell: bash
|
||||
run: |
|
||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
||||
- uses: actions/cache@v3
|
||||
name: Setup pnpm cache
|
||||
with:
|
||||
path: ${{ env.STORE_PATH }}
|
||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pnpm-store-
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Check Type
|
||||
run: pnpm check:type
|
||||
- name: Check Build
|
||||
run: pnpm build
|
@ -33,6 +33,10 @@
|
||||
"type": "refactor",
|
||||
"section": "Others"
|
||||
},
|
||||
{
|
||||
"type": "perf",
|
||||
"section": "Others"
|
||||
},
|
||||
{
|
||||
"type": "chore",
|
||||
"section": "Others"
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user