build(deps-dev): bump lodash from 4.17.21 to 4.17.23 #14
This file contains hidden or 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: Build gen-doc | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| build-docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build gen-doc | |
| run: npx jsdoc -c jsdoc.conf.json && git add docs/* | |
| - name: Commit & Push | |
| uses: actions-js/push@master | |
| with: | |
| github_token: ${{ secrets.GH_TOKEN }} | |
| message: generated documentation | |
| branch: main |