feat: add the React Agent MCP tools call examples(https://github.com/… #85
This file contains hidden or 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: 👀 Linter | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| push: | |
| branches: | |
| - "main" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint-check: | |
| name: Lint Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: ./tools/github-actions/setup-deps | |
| - name: Checkout LFS objects | |
| run: git lfs checkout | |
| - name: Lint Checks | |
| run: | | |
| make install-tools | |
| make lint | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| needs: lint-check | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: ./tools/github-actions/setup-deps | |
| - name: Checkout LFS objects | |
| run: git lfs checkout | |
| - name: Build | |
| run: | | |
| make install | |
| make build |