fix: pass size to content cb in MockRequestBuilder #35
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
| # https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
| name: "Release" | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| jobs: | |
| tests: | |
| name: "Create Release" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: "Checkout" | |
| uses: "actions/checkout@v4" | |
| - uses: "actions/setup-node@v4" | |
| with: | |
| node-version: 'lts/*' | |
| - name: "Run semantic-release" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: npx semantic-release |