Merge pull request #18 from framersai/changeset-release/master #190
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: CI | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Checkout agentos core (peer dependency) | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: framersai/agentos | |
| path: packages/agentos | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install dependencies | |
| run: pnpm install --no-frozen-lockfile | |
| - name: Build agentos core | |
| run: cd packages/agentos && pnpm install --no-frozen-lockfile && pnpm run build | |
| - name: Build extensions | |
| run: pnpm run build | |
| - name: Test | |
| run: pnpm -r --if-present run test |