We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52f7816 commit fa21b95Copy full SHA for fa21b95
1 file changed
.github/workflows/ci.yml
@@ -15,3 +15,17 @@ jobs:
15
- run: pnpm lint
16
- run: pnpm test
17
- 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