-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (31 loc) · 891 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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