chore(deps)(deps): bump @opentelemetry/sdk-node from 0.213.0 to 0.218.0 #594
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] | |
| workflow_dispatch: | |
| # Deployments are handled by Vercel's GitHub integration | |
| # This workflow only runs tests and checks | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install --frozen-lockfile | |
| - run: bun run typecheck | |
| - run: bun run --filter @effect-patterns/ep-cli test -- --reporter=dot | |
| - run: bun run --filter @effect-patterns/toolkit test | |
| - run: bun run lint:all | |
| continue-on-error: true |