MYDOC/.gitea/workflows/demo.yaml
洪剑峰 c638162d79
Some checks failed
Node.js CI / build (push) Has been cancelled
123
2024-08-05 19:54:17 +08:00

19 lines
497 B
YAML

name: Node.js CI
on: [push]
jobs:
build:
steps:
- name: Check out repository code
uses: https://gitea.com/actions/checkout@v3
- run: ls -lR
- name: Use gitea Node.js
uses: https://gitea.com/actions/setup-node@v4
with:
node-version: '18.4.0'
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Build Docusaurus website
run: yarn build