BREAKING CHANGE: esm-only #329
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: 'Pull Request' | |
| on: ['pull_request'] | |
| concurrency: | |
| group: pr-common-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| linters: | |
| runs-on: ubuntu-latest | |
| name: Run linters | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setting up the repository environment | |
| uses: ./.github/actions/setup | |
| - name: Build packages | |
| run: yarn run build | |
| - name: Run lint:ci command | |
| run: yarn run lint:ci | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Run unit tests | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setting up the repository environment | |
| uses: ./.github/actions/setup | |
| - name: Build packages | |
| run: yarn run build | |
| - name: Run tests for the specified workspace | |
| run: yarn run test:ci | |