feat: experimental span filter sampler #62
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: Test Install | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: "1.2.23" | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Test | |
| run: bun test | |
| - name: Build package | |
| run: bun run build | |
| - name: Dry run publish | |
| run: bun publish --dry-run | |
| env: | |
| NPM_CONFIG_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: Check build output | |
| run: | | |
| test -f dist/index.mjs | |
| test -f dist/index.cjs | |
| test -f dist/index.d.ts |