New starter apps #370
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: CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: ["main"] # remove "react-demo-app" before merge to main | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| concurrency: | |
| group: pr-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 | |
| - uses: ./.github/workflows/actions/install | |
| - name: Install Playwright Chromium | |
| run: | | |
| pnpm --filter ix-angular-starter exec playwright install chromium | |
| pnpm --filter ix-react-starter exec playwright install chromium | |
| pnpm --filter ix-vue-starter exec playwright install chromium | |
| - name: Build | |
| run: pnpm build | |
| - name: Test | |
| run: pnpm test |