chore(deps): update dependency @a2a-js/sdk to v1 #92
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: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| linting: | |
| name: Static linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: "24" | |
| - name: Install NPM dependencies | |
| run: npm ci | |
| - name: ESLint | |
| run: npm run eslint | |
| - name: Prettier | |
| run: npm run prettier:check | |
| unit-tests: | |
| name: Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: "24" | |
| - name: Install NPM dependencies | |
| run: npm ci | |
| - name: Run Unit Tests | |
| run: npm run test:ci | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: "24" | |
| - name: Install NPM dependencies | |
| run: npm ci | |
| - name: Build | |
| run: npm run build |