Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
29 lines
462 B
YAML
29 lines
462 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '22' # 根据项目需求调整Node.js版本
|
|
|
|
- name: Install dependencies
|
|
run: bun install
|
|
|
|
- name: Run development server
|
|
run: bun run dev
|