feat(web): add stargazers avatar grid background to opensource hero section #317
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
| # https://github.com/tauri-apps/tauri-action/blob/3013cac/examples/test-build-only.yml | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - apps/web/** | |
| - packages/** | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - apps/web/** | |
| - packages/** | |
| jobs: | |
| ci: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - platform: "macos" | |
| runner: "macos-14" | |
| runs-on: ${{ matrix.runner }} | |
| env: | |
| ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/pnpm_install | |
| - uses: denoland/setup-deno@v2 | |
| - run: pnpm -F ui build | |
| - run: pnpm -F web typecheck | |
| - uses: ./.github/actions/wait-for-netlify-preview | |
| if: github.event_name == 'pull_request' | |
| - name: Set BASE_URL for main branch | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
| run: echo "BASE_URL=https://hyprnote.netlify.app" >> "$GITHUB_ENV" | |
| - run: pnpm exec playwright install --with-deps chromium | |
| working-directory: apps/web | |
| - run: pnpm -F web test |