ci: 初始化 CI/CD 流水线并进行项目配置
This commit is contained in:
3
.dev.vars.example
Normal file
3
.dev.vars.example
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Wrangler 开发环境配置示例文件
|
||||||
|
# 复制此文件为 .dev.vars 并填入实际的环境变量值
|
||||||
|
# 该文件用于本地开发时的环境变量设置
|
75
.github/workflows/ci-cd.yaml
vendored
Normal file
75
.github/workflows/ci-cd.yaml
vendored
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
name: CI/CD Pipeline
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
env:
|
||||||
|
TZ: Asia/Shanghai
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint-build-and-typecheck:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: gitea/runner-images:ubuntu-latest-slim # https://github.com/cloudflare/wrangler-action/issues/329#issuecomment-3046747722
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: 🛠️ 设置Node环境
|
||||||
|
uses: yanhao98/composite-actions/setup-node-environment@41ff2ce04aed748954bd860668b69edd103bba2c
|
||||||
|
|
||||||
|
- name: 🔍 静态代码分析
|
||||||
|
run: pnpm run lint
|
||||||
|
|
||||||
|
- name: 📦 构建项目
|
||||||
|
run: pnpm run build-only
|
||||||
|
env:
|
||||||
|
VITE_BUILD_COMMIT: ${{ github.sha }}
|
||||||
|
|
||||||
|
- name: 📊 计算构建大小
|
||||||
|
run: |
|
||||||
|
echo "📊 构建大小统计:"
|
||||||
|
echo "----------------------------------------"
|
||||||
|
echo "🔹 人类可读格式: $(du -sh dist | cut -f1)"
|
||||||
|
echo "🔹 以MB为单位: $(du -sm dist | cut -f1) MB"
|
||||||
|
echo "🔹 以KB为单位: $(du -sk dist | cut -f1) KB"
|
||||||
|
echo "🔹 文件总数: $(find dist -type f | wc -l) 个文件"
|
||||||
|
echo "----------------------------------------"
|
||||||
|
|
||||||
|
- name: ✅ 类型检查
|
||||||
|
run: pnpm run type-check # 要先 build,保证 components.d.ts 存在
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: lint-build-and-typecheck
|
||||||
|
if: github.ref == 'refs/heads/main'
|
||||||
|
|
||||||
|
# https://github.com/cloudflare/wrangler-action/issues/329#issuecomment-3046747722
|
||||||
|
container:
|
||||||
|
image: gitea/runner-images:ubuntu-latest-slim
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: 🛠️ 设置Node环境
|
||||||
|
uses: yanhao98/composite-actions/setup-node-environment@41ff2ce04aed748954bd860668b69edd103bba2c
|
||||||
|
|
||||||
|
- name: 📦 构建项目
|
||||||
|
run: pnpm run build-only
|
||||||
|
env:
|
||||||
|
VITE_BUILD_COMMIT: ${{ github.sha }}
|
||||||
|
|
||||||
|
# - name: 🚀 上传版本到 Cloudflare
|
||||||
|
# uses: cloudflare/wrangler-action@v3
|
||||||
|
# id: upload
|
||||||
|
# with:
|
||||||
|
# apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||||
|
# accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||||
|
# command: versions upload --tag "${{ github.sha }}" --message "Deploy commit ${{ github.sha }} from ${{ github.ref_name }}"
|
||||||
|
|
||||||
|
- name: 🚀 部署到 Cloudflare
|
||||||
|
uses: cloudflare/wrangler-action@v3
|
||||||
|
with:
|
||||||
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||||
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||||
|
command: deploy
|
4
.gitignore
vendored
4
.gitignore
vendored
@@ -34,5 +34,5 @@ playwright-report/
|
|||||||
.wrangler
|
.wrangler
|
||||||
.dev.vars*
|
.dev.vars*
|
||||||
!.dev.vars.example
|
!.dev.vars.example
|
||||||
.env*
|
# .env*
|
||||||
!.env.example
|
# !.env.example
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="">
|
<html lang="zh-CN" data-build-time="%VITE_BUILD_TIME%" data-commit="%VITE_BUILD_COMMIT%">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link rel="icon" href="/favicon.ico" />
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
@@ -24,7 +24,8 @@
|
|||||||
"-wrangler:pages:deploy:prod": "wrangler pages deploy dist --project-name=vue-ts-example-2025",
|
"-wrangler:pages:deploy:prod": "wrangler pages deploy dist --project-name=vue-ts-example-2025",
|
||||||
"-deploy:preview": "run-s build-only wrangler:pages:deploy:preview",
|
"-deploy:preview": "run-s build-only wrangler:pages:deploy:preview",
|
||||||
"-deploy:prod": "run-s build-only wrangler:pages:deploy:prod",
|
"-deploy:prod": "run-s build-only wrangler:pages:deploy:prod",
|
||||||
"deploy": "pnpm run build && wrangler deploy",
|
"wrangler:deploy": "pnpm run build && wrangler deploy",
|
||||||
|
"wrangler:versions:upload": "pnpm run build && wrangler versions upload",
|
||||||
"cf-typegen": "wrangler types"
|
"cf-typegen": "wrangler types"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
4
worker-configuration.d.ts
vendored
4
worker-configuration.d.ts
vendored
@@ -5440,7 +5440,7 @@ type AIGatewayHeaders = {
|
|||||||
[key: string]: string | number | boolean | object;
|
[key: string]: string | number | boolean | object;
|
||||||
};
|
};
|
||||||
type AIGatewayUniversalRequest = {
|
type AIGatewayUniversalRequest = {
|
||||||
provider: AIGatewayProviders | string; // eslint-disable-line
|
provider: AIGatewayProviders | string;
|
||||||
endpoint: string;
|
endpoint: string;
|
||||||
headers: Partial<AIGatewayHeaders>;
|
headers: Partial<AIGatewayHeaders>;
|
||||||
query: unknown;
|
query: unknown;
|
||||||
@@ -5456,7 +5456,7 @@ declare abstract class AiGateway {
|
|||||||
gateway?: UniversalGatewayOptions;
|
gateway?: UniversalGatewayOptions;
|
||||||
extraHeaders?: object;
|
extraHeaders?: object;
|
||||||
}): Promise<Response>;
|
}): Promise<Response>;
|
||||||
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>;
|
||||||
}
|
}
|
||||||
interface AutoRAGInternalError extends Error {
|
interface AutoRAGInternalError extends Error {
|
||||||
}
|
}
|
||||||
|
@@ -7,6 +7,7 @@
|
|||||||
"name": "vue-ts-example-2025",
|
"name": "vue-ts-example-2025",
|
||||||
"compatibility_date": "2025-09-09",
|
"compatibility_date": "2025-09-09",
|
||||||
"main": "server/index.ts",
|
"main": "server/index.ts",
|
||||||
|
"workers_dev": true,
|
||||||
"assets": {
|
"assets": {
|
||||||
"not_found_handling": "single-page-application",
|
"not_found_handling": "single-page-application",
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user