Skip to content

chore(deps-dev): bump @types/node from 24.2.0 to 24.9.1 (#492) #85

chore(deps-dev): bump @types/node from 24.2.0 to 24.9.1 (#492)

chore(deps-dev): bump @types/node from 24.2.0 to 24.9.1 (#492) #85

Workflow file for this run

name: "typedoc"
on:
push:
branches: [feat/lnclient, master]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- run: yarn install --frozen-lockfile
# Generate your TypeDoc documentation
- run: npx typedoc src/index.ts --out docs/generated
# https://github.com/actions/upload-pages-artifact
- uses: actions/upload-pages-artifact@v3
with:
path: ./docs/generated # This should be your TypeDoc "out" path.
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
# https://github.com/actions/deploy-pages
uses: actions/deploy-pages@v4