Files
vue-ts-example/.github/workflows/ci.yaml
严浩 e50a16a583
All checks were successful
CI / build-and-deploy (push) Successful in 4m33s
Update ci.yaml to use pnpm instead of pnpx for Vercel commands
2024-09-26 17:56:57 +08:00

77 lines
2.5 KiB
YAML

# https://cn.vitejs.dev/guide/static-deploy
name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: 'ci'
cancel-in-progress: true
jobs:
build-and-deploy:
# timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: 拉取代码
uses: actions/checkout@v4
- name: 修改 .npmrc
run: |
sed -i '/use-node-version/d' .npmrc;
sed -i '/node-mirror/d' .npmrc;
- name: 安装 pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: false
- name: 安装 Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'pnpm'
- name: 安装依赖
run: pnpm install --frozen-lockfile
- name: 静态代码分析
run: pnpm lint
# - name: Build
# run: pnpm build
# env:
# VITE_BUILD_COMMIT: ${{ github.sha }}
# https://github.com/vercel/examples/tree/main/ci-cd/github-actions
# cname-cn.vercel.com cname-china.vercel-dns.com
- name: Pull Vercel Environment Information
run: pnpm exec vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: pnpm exec vercel build --target=production --token=${{ secrets.VERCEL_TOKEN }}
env:
VITE_BUILD_COMMIT: ${{ github.sha }}
- name: Deploy Project Artifacts to Vercel
run: pnpm exec vercel deploy --prebuilt --target=production --token=${{ secrets.VERCEL_TOKEN }}
- 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/blob/0c0c9b63897c05d10c58e1a1e36feda2cb99eca7/.github/workflows/preview.yml#L40
run: |
repository=${{github.repository}}
project_name=${repository#*/}
export DEPLOY_DOMAIN=https://preview-pr${{ github.run_number }}-vue-ts-example.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 }}