fix: Don't rewrap setters on the prototype #1205
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: Coveralls | |
| on: ["push"] | |
| jobs: | |
| mobx: | |
| name: Packages coverage | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@master | |
| with: | |
| # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
| fetch-depth: 0 | |
| - name: Setup Node.js 22.x | |
| uses: actions/setup-node@master | |
| with: | |
| node-version: 22.x | |
| - name: Install Dependencies | |
| run: yarn --frozen-lockfile --ignore-scripts | |
| - name: Build packages | |
| run: yarn lerna run build:test | |
| - name: Run Coverage | |
| run: yarn coverage | |
| - name: Upload to coveralls | |
| uses: coverallsapp/github-action@v2.3.6 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |