Skip to content

Commit fa21b95

Browse files
committed
ci: add hosted app checks to workflow
1 parent 52f7816 commit fa21b95

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,17 @@ jobs:
1515
- run: pnpm lint
1616
- run: pnpm test
1717
- run: pnpm build
18+
app:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: pnpm/action-setup@v4
23+
- uses: actions/setup-node@v4
24+
with:
25+
node-version: "22"
26+
cache: pnpm
27+
- run: pnpm --dir app install --frozen-lockfile
28+
- run: pnpm --dir app check-types
29+
- run: pnpm --dir app lint
30+
- run: pnpm --dir app test
31+
- run: pnpm --dir app build

0 commit comments

Comments
 (0)