File tree Expand file tree Collapse file tree 5 files changed +13
-6
lines changed
Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 2626 run : npm run lint
2727
2828 test :
29- name : Test
29+ name : Test (Node)
3030 runs-on : ${{ matrix.operating-system }}
3131 strategy :
3232 fail-fast : false
5252 - name : Test
5353 run : npm run test
5454
55+ - name : Test (Integration)
56+ # https://github.com/webpack/webpack/issues/14532
57+ if : ${{ matrix.node-version != '17' }}
58+ run : |
59+ cd ./tests/integration/webpack-babel-test && ./test.sh && cd -
60+ cd ./tests/integration/webpack-test && ./test.sh && cd -
61+
5562 browser :
56- name : Browser Tests
63+ name : Test (Browser)
5764 runs-on : ' ubuntu-latest'
5865 steps :
5966 - name : Checkout
Original file line number Diff line number Diff line change 77 "private" : true ,
88 "license" : " MIT" ,
99 "dependencies" : {
10- "handlebars" : " file:../.."
10+ "handlebars" : " file:../../.. "
1111 },
1212 "scripts" : {
1313 "test" : " node run-handlebars.js" ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ cd "$( dirname "$( readlink -f "$0" )" )" || exit 1
1414unset npm_config_prefix
1515
1616echo " Handlebars should be able to run in various versions of NodeJS"
17- for node_version_to_test in 0.10 0.12 4 5 6 7 8 9 10 11 12 13 14 15; do
17+ for node_version_to_test in 0.10 0.12 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ; do
1818
1919 rm target node_modules package-lock.json -rf
2020 mkdir target
Original file line number Diff line number Diff line change 1212 "@roundingwellos/babel-plugin-handlebars-inline-precompile" : " ^3.0.1" ,
1313 "babel-loader" : " ^8.0.6" ,
1414 "babel-plugin-istanbul" : " ^5.2.0" ,
15- "handlebars" : " file:../.." ,
15+ "handlebars" : " file:../../.. " ,
1616 "handlebars-loader" : " ^1.7.1" ,
1717 "nyc" : " ^14.1.1" ,
1818 "webpack" : " ^4.39.3" ,
Original file line number Diff line number Diff line change 1313 "license" : " ISC" ,
1414 "dependencies" : {},
1515 "devDependencies" : {
16- "handlebars" : " file:../.." ,
16+ "handlebars" : " file:../../.. " ,
1717 "handlebars-loader" : " ^1.7.1" ,
1818 "webpack" : " ^4.39.3" ,
1919 "webpack-cli" : " ^3.3.7"
You can’t perform that action at this time.
0 commit comments