MYDOC/.gitea/workflows/demo.yaml
洪剑峰 31752cd589
Some checks failed
Node.js CI / build (push) Failing after 33s
123
2024-08-05 17:44:02 +08:00

19 lines
509 B
YAML

name: Node.js CI
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
build:
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Use gitea Node.js
uses: https://gitea.com/actions/setup-node@v4
with:
node-version: '14' # 确保这是与你的项目兼容的Node.js版本
- name: Install dependencies
run: yarn
- name: Build Docusaurus website
run: yarn build