fix: remove console.log #10
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: update docs | |
# on: | |
# push: | |
# branches: [master] | |
# workflow_dispatch: | |
# permissions: | |
# contents: write | |
# jobs: | |
# ixo-cellnode-docs: | |
# runs-on: ubuntu-latest | |
# concurrency: | |
# group: ${{ github.ref }} | |
# cancel-in-progress: true | |
# steps: | |
# - name: 🏗 Setup repo | |
# uses: actions/checkout@v2 | |
# - name: 🏗 Setup Node | |
# uses: actions/setup-node@v2 | |
# with: | |
# node-version: 16.x | |
# - name: install typedoc | |
# run: npm install typedoc | |
# - name: generate docs | |
# run: npx typedoc src/* src/*/* | |
# # run: echo ${GITHUB_REF##*/} | |
# - name: Deploy 🚀 | |
# uses: JamesIves/github-pages-deploy-action@v4 | |
# with: | |
# folder: docs | |
# branch: master | |
# target-folder: docs |