debug #3
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] | |
| jobs: | |
| robin-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/workflows/actions/prepare | |
| - name: Show pre.json before | |
| run: cat .changeset/pre.json | |
| - name: Test exit pre mode | |
| run: yarn changeset:exit-pre-mode | |
| - name: Show pre.json after | |
| run: cat .changeset/pre.json |