2024-06-25 15:20:50 +08:00
|
|
|
name: Test
|
2024-06-25 15:16:54 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
[pull_request,push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
# 拉取代码
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Use Node.js 20
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 20
|
|
|
|
# 启用缓存加速
|
|
|
|
- name: Cache
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: ~/.npm
|
|
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
# 安装 Npm 并构建
|
|
|
|
- name: Install and Build
|
|
|
|
run: npm install && npm run build
|