Skip to content

Merge pull request #1794 from o1-labs/fetch-events-timeout-fix #615

Merge pull request #1794 from o1-labs/fetch-events-timeout-fix

Merge pull request #1794 from o1-labs/fetch-events-timeout-fix #615

Workflow file for this run

name: o1js typedoc
on:
push:
branches:
- main
jobs:
Build-Doc:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Run typedoc
run: |
GIT_LFS_SKIP_SMUDGE=1 git submodule update --init --recursive
npm ci
npx typedoc --tsconfig tsconfig.node.json src/index.ts
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs