File tree Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : NodeJS with Webpack
2
+
3
+ on :
4
+ push :
5
+ branches : [ "master" ]
6
+ pull_request :
7
+ branches : [ "master" ]
8
+
9
+ jobs :
10
+ build :
11
+ strategy :
12
+ matrix :
13
+ os : [macos-latest, ubuntu-latest, windows-latest]
14
+ runs-on : ${{ matrix.os }}
15
+ steps :
16
+ - name : Checkout
17
+ uses : actions/checkout@v3
18
+ - name : Install Node.js
19
+ uses : actions/setup-node@v3
20
+ with :
21
+ node-version : 18.x
22
+ - run : npm install
23
+ - run : xvfb-run -a npm test
24
+ if : runner.os == 'Linux'
25
+ - run : npm test
26
+ if : runner.os != 'Linux'
Original file line number Diff line number Diff line change 62
62
"vscode:prepublish" : " webpack --mode production" ,
63
63
"compile" : " webpack --mode none" ,
64
64
"watch" : " webpack --mode none --watch" ,
65
- "just-test" : " node node_modules/vscode/bin/test" ,
66
65
"test-compile" : " tsc -p ./ && npm run compile" ,
67
- "test" : " npm run test-compile && node node_modules/vscode/bin/ test"
66
+ "test" : " npm run test-compile && node ./out/ test/runTest.js "
68
67
},
69
68
"devDependencies" : {
70
69
"@types/glob" : " ^8.0.0" ,
You can’t perform that action at this time.
0 commit comments