重命名 CI 工作流,合并 Playwright 和 depcheck 任务,删除旧的工作流文件
All checks were successful
/ depcheck (push) Successful in 1m31s
/ playwright (push) Successful in 3m57s
/ build-and-deploy-to-vercel (push) Successful in 1m28s

This commit is contained in:
严浩
2024-10-12 11:23:45 +08:00
parent d08c1c40b0
commit 90002352b5
3 changed files with 18 additions and 53 deletions

View File

@ -1,11 +1,9 @@
# https://cn.vitejs.dev/guide/static-deploy # https://cn.vitejs.dev/guide/static-deploy
name: CI
on: on:
push: push:
jobs: jobs:
build-and-deploy: build-and-deploy-to-vercel:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -20,11 +18,6 @@ jobs:
sed -i '/use-node-version/d' .npmrc; sed -i '/use-node-version/d' .npmrc;
sed -i '/node-mirror/d' .npmrc; sed -i '/node-mirror/d' .npmrc;
# - name: Build
# run: pnpm build
# env:
# VITE_BUILD_COMMIT: ${{ github.sha }}
# https://github.com/vercel/examples/tree/main/ci-cd/github-actions # https://github.com/vercel/examples/tree/main/ci-cd/github-actions
# cname-cn.vercel.com cname-china.vercel-dns.com # cname-cn.vercel.com cname-china.vercel-dns.com
- name: 拉取 Vercel 环境信息 - name: 拉取 Vercel 环境信息
@ -36,6 +29,13 @@ jobs:
- name: 部署到 Vercel - name: 部署到 Vercel
run: pnpm exec vercel deploy --prebuilt --target=production --token=${{ secrets.VERCEL_TOKEN }} run: pnpm exec vercel deploy --prebuilt --target=production --token=${{ secrets.VERCEL_TOKEN }}
playwright:
runs-on: ubuntu-latest
steps:
- uses: yanhao98/composite-actions/setup-node-environment@main
- run: pnpm run build-only
env:
VITE_BUILD_COMMIT: ${{ github.sha }}
- name: 部署到 Surge - name: 部署到 Surge
id: surge_deploy id: surge_deploy
# pnpm exec surge token / pnpx surge token # pnpm exec surge token / pnpx surge token
@ -43,17 +43,23 @@ jobs:
# https://github.com/Tencent/tdesign-vue-next/blob/03036a19adccf4657d7792e3a61a6c6a7d902e3e/.github/workflows/preview-publish.yml # https://github.com/Tencent/tdesign-vue-next/blob/03036a19adccf4657d7792e3a61a6c6a7d902e3e/.github/workflows/preview-publish.yml
# https://github.com/Tencent/tdesign/blob/0c0c9b63897c05d10c58e1a1e36feda2cb99eca7/.github/workflows/preview.yml#L40 # https://github.com/Tencent/tdesign/blob/0c0c9b63897c05d10c58e1a1e36feda2cb99eca7/.github/workflows/preview.yml#L40
run: | run: |
repository=${{github.repository}} export DEPLOY_DOMAIN=https://${{ github.sha }}.surge.sh
project_name=${repository#*/}
export DEPLOY_DOMAIN=https://preview-pr${{ github.run_number }}-$project_name.surge.sh
cp dist/index.html dist/200.html cp dist/index.html dist/200.html
pnpm exec surge --project ./dist --domain $DEPLOY_DOMAIN --token ${{ secrets.SURGE_TOKEN }} pnpm exec surge --project ./dist --domain $DEPLOY_DOMAIN --token ${{ secrets.SURGE_TOKEN }}
echo the preview URL is $DEPLOY_DOMAIN echo the preview URL is $DEPLOY_DOMAIN
echo "url=$DEPLOY_DOMAIN" >> $GITHUB_OUTPUT
echo "url=$DEPLOY_DOMAIN" >> $GITHUB_OUTPUT
- name: Install Playwright Browsers - name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps run: pnpm exec playwright install --with-deps
- name: Run Playwright tests - name: Run Playwright tests
run: pnpm exec playwright test run: pnpm exec playwright test
env: env:
BASE_URL: ${{ steps.surge_deploy.outputs.url }} BASE_URL: ${{ steps.surge_deploy.outputs.url }}
depcheck:
runs-on: ubuntu-latest
steps:
- uses: yanhao98/composite-actions/setup-node-environment@main
- run: npx depcheck || true
- run: node .depcheck.js

View File

@ -1,11 +0,0 @@
on:
push:
jobs:
depcheck:
runs-on: ubuntu-latest
steps:
- uses: yanhao98/composite-actions/setup-node-environment@main
- run: npx depcheck || true
- run: node .depcheck.js

View File

@ -1,30 +0,0 @@
name: Playwright
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: yanhao98/composite-actions/setup-node-environment@main
- run: pnpm run build-only
- name: 部署到 Surge
id: surge_deploy
# pnpm exec surge token / pnpx surge token
# https://github.com/Tencent/tdesign-vue-next/pull/1604#issuecomment-1236244550
# https://github.com/Tencent/tdesign-vue-next/blob/03036a19adccf4657d7792e3a61a6c6a7d902e3e/.github/workflows/preview-publish.yml
# https://github.com/Tencent/tdesign/blob/0c0c9b63897c05d10c58e1a1e36feda2cb99eca7/.github/workflows/preview.yml#L40
run: |
export DEPLOY_DOMAIN=https://${{ github.sha }}.surge.sh
cp dist/index.html dist/200.html
pnpm exec surge --project ./dist --domain $DEPLOY_DOMAIN --token ${{ secrets.SURGE_TOKEN }}
echo the preview URL is $DEPLOY_DOMAIN
echo "url=$DEPLOY_DOMAIN" >> $GITHUB_OUTPUT
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Run Playwright tests
run: pnpm exec playwright test
env:
BASE_URL: ${{ steps.surge_deploy.outputs.url }}