File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 76
76
- name : Install dependencies
77
77
run : npm ci
78
78
79
+ - name : Build client and types
80
+ run : npm run build
81
+
79
82
- name : Install webpack ${{ matrix.webpack-version }}
80
83
if : matrix.webpack-version == '4'
81
84
run : npm i webpack@${{ matrix.webpack-version }} --save-dev --ignore-scripts
Original file line number Diff line number Diff line change 25
25
"commitlint" : " commitlint --from=master" ,
26
26
"build:client" : " rimraf ./client/* && babel client-src/ --out-dir client/ --ignore \" client-src/webpack.config.js\" --ignore \" client-src/modules\" && webpack --config client-src/webpack.config.js" ,
27
27
"build:types" : " rimraf ./types/* && tsc --declaration --emitDeclarationOnly --outDir types && node ./scripts/extend-webpack-types.js && prettier \" types/**/*.ts\" --write && prettier \" types/**/*.ts\" --write" ,
28
- "build" : " npm-run-all -p \" build:**\" " ,
28
+ "build" : " npm run build:client" ,
29
+ "postbuild" : " npm run-all -p \" build:**\" " ,
29
30
"test:only" : " jest" ,
30
31
"test:coverage" : " npm run test:only -- --coverage" ,
31
32
"test:watch" : " npm run test:coverage --watch" ,
You can’t perform that action at this time.
0 commit comments