File tree Expand file tree Collapse file tree 4 files changed +18
-42
lines changed
Expand file tree Collapse file tree 4 files changed +18
-42
lines changed Original file line number Diff line number Diff line change 33 push :
44 paths :
55 - ' packages/components/**'
6- - ' packages/utils/**'
76 - ' apps/cli/**'
87 - ' .github/workflows/ci_apps_cli.yml'
98
1716 steps :
1817 - uses : actions/checkout@v4
1918 - run : npm i
20- - run : npm run build
21- working-directory : ./packages/utils
22- - run : npm run build
19+ - run : |
20+ npm i
21+ npm run build
2322 working-directory: ./packages/components
2423 - run : npm run lint
2524
3130 steps :
3231 - uses : actions/checkout@v4
3332 - run : npm i
34- - run : npm run build
35- working-directory : ./packages/utils
36- - run : npm run build
33+ - run : |
34+ npm i
35+ npm run build
3736 working-directory: ./packages/components
3837 - run : tsc
3938 working-directory : ./apps/cli
4342 steps :
4443 - uses : actions/checkout@v4
4544 - run : npm i
46- - run : npm run build
47- working-directory : ./packages/utils
48- - run : npm run build
45+ - run : |
46+ npm i
47+ npm run build
4948 working-directory: ./packages/components
5049 - run : npm run coverage
5150
5756 steps :
5857 - uses : actions/checkout@v4
5958 - run : npm i
60- - run : npm run build
61- working-directory : ./packages/utils
62- - run : npm run build
59+ - run : |
60+ npm i
61+ npm run build
6362 working-directory: ./packages/components
6463 - run : npm run build
6564 working-directory : ./apps/cli
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ name: apps/hyparquet-demo
22on :
33 push :
44 paths :
5- - ' packages/utils/**'
65 - ' apps/hyparquet-demo/**'
76 - ' .github/workflows/ci_apps_hyparquet_demo.yml'
87
@@ -16,33 +15,25 @@ jobs:
1615 steps :
1716 - uses : actions/checkout@v4
1817 - run : npm i
19- - run : npm run build
20- working-directory : ./packages/utils
2118 - run : npm run lint
2219
2320 typecheck :
2421 runs-on : ubuntu-latest
2522 steps :
2623 - uses : actions/checkout@v4
2724 - run : npm i
28- - run : npm run build
29- working-directory : ./packages/utils
3025 - run : tsc
3126
3227 test :
3328 runs-on : ubuntu-latest
3429 steps :
3530 - uses : actions/checkout@v4
3631 - run : npm i
37- - run : npm run build
38- working-directory : ./packages/utils
3932 - run : npm run coverage
4033
4134 buildcheck :
4235 runs-on : ubuntu-latest
4336 steps :
4437 - uses : actions/checkout@v4
4538 - run : npm i
46- - run : npm run build
47- working-directory : ./packages/utils
4839 - run : npm run build
Original file line number Diff line number Diff line change 33 push :
44 paths :
55 - ' packages/components/**'
6- - ' packages/utils/**'
76 - ' .github/workflows/ci_packages_components.yml'
87
98defaults :
@@ -16,26 +15,20 @@ jobs:
1615 steps :
1716 - uses : actions/checkout@v4
1817 - run : npm i
19- - run : npm run build
20- working-directory : ./packages/utils
2118 - run : npm run lint
2219
2320 typecheck :
2421 runs-on : ubuntu-latest
2522 steps :
2623 - uses : actions/checkout@v4
2724 - run : npm i
28- - run : npm run build
29- working-directory : ./packages/utils
3025 - run : tsc
3126
3227 test :
3328 runs-on : ubuntu-latest
3429 steps :
3530 - uses : actions/checkout@v4
3631 - run : npm i
37- - run : npm run build
38- working-directory : ./packages/utils
3932 - run : npm run coverage
4033
4134 buildcheck :
4437 - uses : actions/checkout@v4
4538 - run : npm i
4639 - run : npm run build
47- working-directory : ./packages/utils
48- - run : npm run build
Original file line number Diff line number Diff line change @@ -17,21 +17,16 @@ jobs:
1717 steps :
1818 - name : Checkout the repository
1919 uses : actions/checkout@v4
20- - name : Install dependencies
21- run : npm i
22- - name : Build @hyparam/utils package
23- run : npm run build
24- working-directory : ./packages/utils
2520 - name : Build hyparquet demo
26- run : npm run build
21+ run : |
22+ npm i
23+ npm run build
2724 working-directory : ./apps/hyparquet-demo
2825 - name : Build hightable demo
29- run : npm run build
30- working-directory : ./apps/hightable-demo
31- - name : Create index file content
3226 run : |
33-
34- id : index_content
27+ npm i
28+ npm run build
29+ working-directory : ./apps/hightable-demo
3530 - name : Move the build outputs to a folder
3631 run : |
3732 mkdir -p build_outputs_folder/apps
You can’t perform that action at this time.
0 commit comments