fix: build issues and remove vite svg #27
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
| # Optional: GitHub Action to auto-generate API client on push | |
| # Uncomment and configure if you want automated generation | |
| # name: Generate API Client | |
| # on: | |
| # push: | |
| # branches: [main] | |
| # paths: | |
| # - 'apps/api/src/**' | |
| # | |
| # jobs: | |
| # generate: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - uses: pnpm/action-setup@v2 | |
| # with: | |
| # version: 9.0.0 | |
| # - uses: actions/setup-node@v4 | |
| # with: | |
| # node-version: 20 | |
| # cache: 'pnpm' | |
| # - run: pnpm install | |
| # - run: pnpm --filter api dev & | |
| # - run: sleep 5 # Wait for server to start | |
| # - run: pnpm generate:api | |
| # - uses: stefanzweifel/git-auto-commit-action@v5 | |
| # with: | |
| # commit_message: "chore: regenerate API client" | |