fix(effect): add missing absurd guards in Layer.buildWithScope and FiberRuntime.evaluateEffect #8960
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: Snapshot | |
| on: | |
| pull_request: | |
| branches: [main, next-minor, next-major] | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| snapshot: | |
| name: Snapshot | |
| if: github.repository_owner == 'Effect-Ts' | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| uses: ./.github/actions/setup | |
| - name: Run codemods | |
| run: pnpm codemod | |
| - name: Build package | |
| run: pnpm build | |
| - name: Create snapshot | |
| id: snapshot | |
| run: pnpx pkg-pr-new@0.0.28 publish --pnpm --comment=off ./packages/* ./packages/ai/* |