Skip to content

Removing useless call to fs/path for defining a pseudo Version (#11) #24

Removing useless call to fs/path for defining a pseudo Version (#11)

Removing useless call to fs/path for defining a pseudo Version (#11) #24

Workflow file for this run

name: Update Docs
on:
push:
paths:
- "index.ts"
jobs:
run_scripts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Typedoc
uses: actions/setup-node@v2
with:
node-version: "18"
- run: npm i && npm run docs
- name: Commit and push changes
run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "docs: Updated Docs"
git push