Skip to content

Commit 68f1ea7

Browse files
committed
add github ci
1 parent 48c13ce commit 68f1ea7

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: apps/hyparquet-demo
2+
on:
3+
push:
4+
paths:
5+
- 'apps/hyparquet-demo/**'
6+
- '.github/workflows/ci_apps_hyparquet_demo.yml'
7+
8+
defaults:
9+
run:
10+
working-directory: ./apps/hyparquet-demo
11+
12+
jobs:
13+
lint:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- run: npm i
18+
- run: npm run lint
19+
20+
typecheck:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v4
24+
- run: npm i
25+
- run: tsc
26+
27+
buildcheck:
28+
runs-on: ubuntu-latest
29+
steps:
30+
- uses: actions/checkout@v4
31+
- run: npm i
32+
- run: npm run build

0 commit comments

Comments
 (0)