Skip to content

Commit 745e48b

Browse files
committed
Adopt turborepo
1 parent 05a6c80 commit 745e48b

303 files changed

Lines changed: 793014 additions & 100 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/eslint.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/workflows/format.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Format
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
Format:
7+
runs-on: ubuntu-latest
8+
env:
9+
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
10+
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- uses: oven-sh/setup-bun@v1
16+
17+
- name: Install modules
18+
run: bun install
19+
20+
- name: Run Format
21+
run: bun run format

.github/workflows/lint.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Lint
2+
on: [push, pull_request]
3+
jobs:
4+
Lint:
5+
runs-on: ubuntu-latest
6+
env:
7+
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
8+
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- uses: oven-sh/setup-bun@v1
14+
15+
- name: Install modules
16+
run: bun install
17+
18+
- name: Run ESLint
19+
run: bun run lint

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
Test:
7+
runs-on: ubuntu-latest
8+
env:
9+
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
10+
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- uses: oven-sh/setup-bun@v1
16+
17+
- name: Install modules
18+
run: bun install
19+
20+
- name: Run Tests
21+
run: bun test

.github/workflows/typecheck.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Typecheck
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
Typecheck:
7+
runs-on: ubuntu-latest
8+
env:
9+
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
10+
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- uses: oven-sh/setup-bun@v1
16+
17+
- name: Install modules
18+
run: bun install
19+
20+
- name: Run Typecheck
21+
run: bun run typecheck

.prettierrc

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"hash":"37afc12906176622","duration":993}
150 Bytes
Binary file not shown.

.turbo/cookies/1.cookie

Whitespace-only changes.

.turbo/cookies/2.cookie

Whitespace-only changes.

0 commit comments

Comments
 (0)