cherry-website/.gitea/workflows/build-demo.yaml
Cdm2883 c8b689943b
Some checks failed
Build Demo / build (push) Failing after 9m42s
ci: auto build
2024-08-09 18:27:08 +08:00

30 lines
598 B
YAML

name: Build Demo
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11.0'
cache: 'pip'
- name: Install Material for MkDocs
run: pip install mkdocs-material
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install npm dependence
run: npm install
- name: Run build script
run: npm run build