feat: update fab design #92
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
on: | |
push: | |
branches: | |
- main | |
- wip # V3 | |
paths: | |
- "examples/stackflow-spa/**" | |
- "packages/recipe/**" | |
- "packages/stylesheet/**" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
name: Deploy seed-design-v3 QA app | |
jobs: | |
deploy: | |
name: Deploy Seed Design V3 QA app | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.11.0 | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn install --immutable | |
- name: Build Packages | |
run: yarn build-only-package | |
- name: Build QA app | |
working-directory: ./examples/stackflow-spa | |
run: | | |
yarn build | |
- name: Deploy qa app at Cloudflare Pages in `seed-design-qa` project | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
apiToken: ${{ secrets.CF_API_TOKEN }} | |
accountId: ${{ secrets.CF_ACCOUNT_ID }} | |
command: pages deploy ./examples/stackflow-spa/dist --project-name=seed-design-qa --branch=main |