File tree Expand file tree Collapse file tree 1 file changed +26
-2
lines changed
Expand file tree Collapse file tree 1 file changed +26
-2
lines changed Original file line number Diff line number Diff line change 2626 with :
2727 node-version : " 16.x"
2828
29- # install deps for frontend and library and build both
30- - name : Install library and frontend deps and build
29+ # install deps for Library development and build
30+ - name : Install library for development
31+ working-directory : ./library
32+ id : npm
33+ run : |
34+ npm ci
35+ npm run build-dev
36+
37+ # install deps for Library production and build
38+ - name : Install library for production
39+ working-directory : ./library
40+ id : npm
41+ run : |
42+ npm ci
43+ npm run build-prod
44+
45+ # install deps for Frontend and Library for development and build both
46+ - name : Install library and Frontend for development
47+ working-directory : ./examples/typescript
48+ id : npm
49+ run : |
50+ npm ci
51+ npm run build-all-dev
52+
53+ # install deps for Frontend and Library for production and build both
54+ - name : Install library and Frontend for production
3155 working-directory : ./examples/typescript
3256 id : npm
3357 run : |
You can’t perform that action at this time.
0 commit comments