File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed
Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Webpack
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+
13+ steps :
14+ - uses : actions/checkout@v4
15+
16+ - name : Use Node.js LTS
17+ uses : actions/setup-node@v4
18+ with :
19+ node-version : ' lts/*'
20+
21+ - name : " Install dependencies"
22+ shell : bash
23+ run : |
24+ npm install
25+
26+ - name : " Install dependencies in the Webpack bundle test package"
27+ shell : bash
28+ working-directory : ./test/bundling/webpack
29+ run : |
30+ npm install
31+
32+ - name : " Install local kerberos into Webpack bundle test package"
33+ shell : bash
34+ working-directory : ./test/bundling/webpack
35+ run : |
36+ npm run install:kerberos
37+
38+ - name : " Run webpack build"
39+ shell : bash
40+ working-directory : ./test/bundling/webpack
41+ run : |
42+ npm run build
You can’t perform that action at this time.
0 commit comments