🚀 release new squid version #12134
Workflow file for this run
This file contains 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, nuxt] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
uses: ./.github/actions/pnpm-install | |
- name: Run Test | |
run: pnpm test | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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@v3 | |
- name: Install dependencies | |
uses: ./.github/actions/pnpm-install | |
- name: Run Build | |
run: NITRO_PRESET=cloudflare-pages pnpm nuxi build |