Merge pull request #179 from episerver/bugfix/CMS-47074-Exception-on-… #106
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: Check Pull requests | |
| on: push | |
| jobs: | |
| Check-PullRequests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: pnpm/action-setup@v2 | |
| name: Install pnpm | |
| id: pnpm-install | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build packages | |
| run: pnpm --filter "./packages/**" build | |
| - name: Build sample sites | |
| run: pnpm --filter "./samples/**" build | |
| - name: Run tests | |
| run: pnpm --filter "./packages/**" test |