17 lines
457 B
YAML
17 lines
457 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: ${{ gitea.repository }}
|
|
- name: Use gitea Node.js
|
|
uses: https://gitea.com/actions/setup-node@v4
|
|
with:
|
|
node-version: '14'
|
|
- name: Install dependencies
|
|
run: yarn install
|
|
- name: Build Docusaurus website
|
|
run: yarn build |