diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index 394c807..002f84a 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -16,4 +16,18 @@ jobs: - name: List files in the repository run: | ls ${{ gitea.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file + - run: echo "🍏 This job's status is ${{ job.status }}." + + - 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 \ No newline at end of file