2023-11-29 18:11:05 -05:00
|
|
|
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
|
2023-11-29 18:11:05 -05:00
|
|
|
- name: Upload Artifacts
|
2023-12-03 12:32:26 -05:00
|
|
|
uses: actions/upload-artifact@main
|
2023-11-29 18:11:05 -05:00
|
|
|
with:
|
|
|
|
name: JSDoc-compiled Documentation
|
|
|
|
path: './documentation/*'
|