Allow data classes to be branded with an additional type parameter #4135
This file contains 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 [email protected] publish --pnpm --comment=off ./packages/* ./packages/ai/* |