Skip to content

refactor: wrap SwiftUI components in VStack for better layout structure #43

refactor: wrap SwiftUI components in VStack for better layout structure

refactor: wrap SwiftUI components in VStack for better layout structure #43

Workflow file for this run

name: main
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["lts/*"]
name: Test on node@v${{ matrix.node }}
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Setup pnpm πŸ”§
uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup node πŸ”§
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: "pnpm"
- name: Install πŸͺ„
run: pnpm install --frozen-lockfile
- name: Lint πŸ”
run: pnpm run lint
- name: TypeScript πŸ”
run: pnpm run check
- name: Jest πŸ”
run: pnpm run spec
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["lts/*"]
name: Build on node@v${{ matrix.node }}
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Setup pnpm πŸ”§
uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup node πŸ”§
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: "pnpm"
- name: Install πŸͺ„
run: pnpm install --frozen-lockfile
- name: Build πŸ’Ž
run: pnpm run build