27 lines
406 B
YAML
27 lines
406 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
|
|
run: |
|
|
ls ${{gitea.workspace}}
|
|
- name: Install dependencies
|
|
run: make build
|