Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork366
[skip netlify] Update Bumped minor version of packages#17615
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:Test & Build app | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches:[main] | |
| pull_request: | |
| branches:[main, beta, production] | |
| jobs: | |
| test: | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v4 | |
| -name:Install dependencies | |
| uses:./.github/actions/pnpm-install | |
| -name:Run Test | |
| run:pnpm test | |
| build: | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v4 | |
| -name:Install dependencies | |
| uses:./.github/actions/pnpm-install | |
| -name:Run Build | |
| run:pnpm generate | |
| -run:wc -l ./.nuxt/dist/server/client.manifest.mjs | |
| -run:stat -c "%s" ./.nuxt/dist/server/client.manifest.mjs | |
| build-cf: | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v4 | |
| -name:Install dependencies | |
| uses:./.github/actions/pnpm-install | |
| -name:Run Build | |
| run:NITRO_PRESET=cloudflare_pages pnpm nuxi build |