29 lines
501 B
YAML
29 lines
501 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- cicd
|
|
pull_request:
|
|
branches:
|
|
- cicd
|
|
|
|
env:
|
|
REPO: ${{ vars.REPO }}
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ppanel-web
|
|
strategy:
|
|
matrix:
|
|
# 只有node支持版本号别名
|
|
node: ['20.15.1']
|
|
steps:
|
|
- name: Checkout code
|
|
uses: https://gitea.cn/actions/checkout@v4
|
|
|
|
- name: Set up Node.js
|
|
uses: https://github.com/pnpm/action-setup@v4
|
|
with:
|
|
version: 9.15.9
|
|
run_install: false |