build(deps): bump opik from 1.10.25 to 1.10.39 #59
Workflow file for this run
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: Node CI | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/ci.yml" | |
| - "package.json" | |
| - "package-lock.json" | |
| - "tsconfig.json" | |
| - "index.ts" | |
| - "openclaw.plugin.json" | |
| - "src/**" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/ci.yml" | |
| - "package.json" | |
| - "package-lock.json" | |
| - "tsconfig.json" | |
| - "index.ts" | |
| - "openclaw.plugin.json" | |
| - "src/**" | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: '22.12.0' | |
| cache: 'npm' | |
| - name: Setup npm | |
| run: npm install -g npm@11.6.2 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run lint | |
| run: npm run lint | |
| - name: Run typecheck | |
| run: npm run typecheck | |
| - name: Run tests | |
| run: npm run test | |
| - name: Run smoke tests | |
| run: npm run smoke | |
| # - name: Run E2E tests | |
| # if: ${{ secrets.OPIK_API_KEY != '' }} | |
| # env: | |
| # OPIK_E2E: "1" | |
| # OPIK_API_KEY: ${{ secrets.OPIK_API_KEY }} | |
| # OPIK_URL_OVERRIDE: ${{ secrets.OPIK_URL_OVERRIDE || 'https://www.comet.com/opik/api' }} | |
| # OPIK_PROJECT_NAME: ${{ secrets.OPIK_PROJECT_NAME || 'openclaw' }} | |
| # OPIK_WORKSPACE: ${{ secrets.OPIK_WORKSPACE || 'default' }} | |
| # run: npm run test:e2e | |
| - name: Verify package payload | |
| run: npm pack --dry-run |