CMS-42559 Enhance getPreviewUtils to support fallback alt text #109
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 |