icondumper2/.github/workflows/build.yml

23 lines
590 B
YAML
Raw Permalink Normal View History

name: "[icondumper2] autobuild"
on: [push]
jobs:
documentation:
name: Compile documentation via JSDoc
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@main
with:
fetch-depth: 0
- name: Install node.js
uses: actions/setup-node@main
- name: Compile documentation with JSDoc
2023-12-18 09:03:51 -05:00
run: npx jsdoc ./icon.js ./lzari.js -d ./documentation -R ./README.md
- name: Upload Artifacts
uses: actions/upload-artifact@main
with:
name: JSDoc-compiled Documentation
path: './documentation/*'