Skip to content

Commit 1cfe750

Browse files
committed
ci(root,vanilla): build apps instead of only typechecking
1 parent d6ccd8b commit 1cfe750

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci-root.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI Root
33
on:
44
push:
55
branches:
6-
- 'root/*'
6+
- "root/*"
77

88
jobs:
99
changed-files:
@@ -41,7 +41,7 @@ jobs:
4141
pnpm install --frozen-lockfile
4242
pnpm run lint
4343
44-
typecheck:
44+
build:
4545
needs: changed-files
4646
runs-on: ubuntu-22.04
4747
if: needs.changed-files.outputs.files != 'true'
@@ -54,4 +54,4 @@ jobs:
5454
cache: pnpm
5555
- run: |
5656
pnpm install --frozen-lockfile
57-
pnpm run --recursive typecheck
57+
pnpm run build

.github/workflows/ci-vanilla.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
pnpm install --frozen-lockfile --filter "@hdoc/dev-challenges" --filter "$app_name"...
6464
pnpm run lint:vanilla vanilla/"$app_name"
6565
66-
typecheck:
66+
build:
6767
needs: changed-files
6868
runs-on: ubuntu-22.04
6969
if: needs.changed-files.outputs.files != 'true'
@@ -77,7 +77,7 @@ jobs:
7777
- run: |
7878
app_name='${{ needs.changed-files.outputs.app_name }}'
7979
pnpm install --frozen-lockfile --filter "@hdoc/dev-challenges" --filter "$app_name"...
80-
pnpm --filter "$app_name" typecheck
80+
pnpm --filter "$app_name" build
8181
8282
test-unit:
8383
needs: changed-files

0 commit comments

Comments
 (0)