Migrate the code to node.js LTS version 16.x.x (#492)
[poolifier.git] / .github / workflows / generate-typedoc.yml
CommitLineData
634be0f3
S
1name: Generate TypeDoc
2
3on:
4 workflow_dispatch:
5
6jobs:
7 generate:
8 runs-on: ubuntu-latest
9
10 steps:
11 - name: Checkout
12 uses: actions/checkout@v2
13 with:
14 persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
15 fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
16
7e0d447f 17 - name: Set node version to 16
634be0f3
S
18 uses: actions/setup-node@v2
19 with:
7e0d447f 20 node-version: 16
634be0f3
S
21
22 - name: Generate TypeDoc
23 run: |
24 npm ci
25 npm run typedoc
26
27 - name: Commit files
9b2fdd9f 28 if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/master'"
634be0f3
S
29 run: |
30 git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
31 git config --local user.name "github-actions[bot]"
32 git commit -m "Generate TypeDoc" -a
33
34 - name: Push changes
9b2fdd9f 35 if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/master'"
634be0f3
S
36 uses: ad-m/github-push-action@master
37 with:
2ba4f142 38 github_token: ${{ secrets.GITHUB_TOKEN }}
634be0f3 39 branch: master