MYDOC/.gitea/workflows/demo.yaml

17 lines
420 B
YAML
Raw Normal View History

2024-08-05 17:16:44 +08:00
name: Node.js CI
2024-07-31 10:55:19 +08:00
on: [push]
jobs:
2024-08-05 18:35:44 +08:00
build:
2024-08-05 19:18:33 +08:00
steps:
2024-08-05 18:35:44 +08:00
- name: Use gitea Node.js
uses: https://gitea.com/actions/setup-node@v4
with:
node-version: '14'
2024-08-05 19:07:34 +08:00
- name: Install Yarn
run: npm install -g yarn
2024-08-05 18:35:44 +08:00
- name: Install dependencies
run: yarn install
2024-08-05 19:18:33 +08:00
- run: ls /workspace/jeff/MYDOC
2024-08-05 18:35:44 +08:00
- name: Build Docusaurus website
run: yarn build