Skip to content

Tidy

Tidy #805

Workflow file for this run

name: main-ci
on:
push:
jobs:
build:
runs-on: ubuntu-latest
env:
TURBO_URL: ${{ secrets.TURBO_URL }}
TURBO_CODE: ${{ secrets.TURBO_CODE }}
timeout-minutes: 1
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
with:
version: 8.15.1
- name: install dependencies
run: cd gg-mono && pnpm install --frozen-lockfile
- name: lint
run: cd gg-mono && pnpm lint
- name: format
run: cd gg-mono && pnpm format:check
- name: build
run: cd gg-mono && pnpm build:ci
- name: install dependencies
run: cd native_gg && pnpm install --frozen-lockfile
- name: lint
run: cd native_gg && pnpm lint
- name: format
run: cd native_gg && pnpm format:check
- name: type check
run: cd native_gg && pnpm type-check