Skip to content

Commit

Permalink
Merge main into sweep/update_the_docstrings_and_comments_in_sd_4a040
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Apr 18, 2024
2 parents 979d272 + 5d80833 commit 276fa2e
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/generate-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Generate docs on merge to dev
run-name: ${{ github.actor }} is generating documentation

on:
push:
branches:
- "dev"
- "main"

jobs:
Generate-Docs-For-TS-SDK:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"

- name: Cache npm dependencies
uses: actions/cache@v4
with:
path: sdks/ts/node_modules
key: ${{ runner.os }}-sdks-ts-npm-${{ hashFiles('sdks/ts/package-lock.json') }}
restore-keys: |
${{ runner.os }}-sdks-ts-npm-
- name: Install npm dependencies
run: |
cd sdks/ts
npm ci
- name: Generate docs
run: |
cd sdks/ts
npm run generate-docs
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "doc(sdks/ts): Generate docs for sdks/ts (CI)"
branch: ${{ github.head_ref }}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

0 comments on commit 276fa2e

Please sign in to comment.