Merge pull request #840 from isamu/refactorAgentDoc #684
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 Build | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'receptron' | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- run: yarn install | |
- run: yarn run build | |
- run: yarn run format | |
- run: cd packages/cli/ && yarn run doc | |
- run: | | |
git config user.name "GitHub Actions Bot" | |
git config user.email "<>" | |
git add packages/*/lib/* docs/agentDocs/* docs/apiDoc/* | |
- name: Commit | |
run: | | |
if [ $(git diff --name-only --cached | wc -l) != 0 ]; then | |
git commit -m "Update lib or docs" packages/*/lib/ docs/agentDocs/* docs/apiDoc/* | |
git push origin main | |
else | |
echo "No change on lib" | |
fi | |
- name: Commit | |
run: | | |
if [ $(git diff | wc -l) != 0 ]; then | |
git commit -m "format" . | |
git push origin main | |
else | |
echo "No change format" | |
fi |