bump(deps): update dependencies next to 16.1.6 [security], react to 1… #55
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: Continuous integration | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| jobs: | |
| build-plainly-render-and-webhook: | |
| name: Build plainly-render-and-webhook | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: plainly-render-and-webhook | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| cache: pnpm | |
| cache-dependency-path: plainly-render-and-webhook/pnpm-lock.yaml | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Setup Biome | |
| uses: biomejs/setup-biome@v2 | |
| with: | |
| working-dir: plainly-render-and-webhook | |
| - name: Run Biome | |
| run: biome ci . | |
| - name: Build | |
| run: pnpm build | |
| build-mcp-ai-crypto-video-agent: | |
| name: Build mcp-ai-crypto-video-agent | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: mcp-ai-crypto-video-agent | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| cache: pnpm | |
| cache-dependency-path: mcp-ai-crypto-video-agent/pnpm-lock.yaml | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Setup Biome | |
| uses: biomejs/setup-biome@v2 | |
| with: | |
| working-dir: mcp-ai-crypto-video-agent | |
| - name: Run Biome | |
| run: biome ci . | |
| - name: Build | |
| run: pnpm build |