This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
minor non-final changes #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
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/*' |