File tree 5 files changed +15
-9380
lines changed
5 files changed +15
-9380
lines changed Original file line number Diff line number Diff line change 10
10
strategy :
11
11
matrix :
12
12
node :
13
- - 10.x
14
- - 12.x
15
- - 14.x
16
- - 16.x
17
13
- 18.x
14
+ - 20.x
18
15
19
16
# Packages 'firefox' and 'chromium' are pre-installed.
20
17
#
@@ -26,20 +23,13 @@ jobs:
26
23
27
24
- uses : actions/checkout@v3
28
25
29
- - uses : actions/cache@v3
30
- if : ${{ runner.os != 'Windows' }}
31
- with :
32
- path : |
33
- ~/.npm
34
- key : ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
35
-
36
26
- name : Use Node.js ${{ matrix.node }}
37
27
uses : actions/setup-node@v3
38
28
with :
39
29
node-version : ${{ matrix.node }}
40
30
41
31
- name : Install
42
- run : npm ci
32
+ run : npm install
43
33
44
34
- name : Tests
45
35
run : npm test
Original file line number Diff line number Diff line change 2
2
/coverage
3
3
/node_modules
4
4
/npm-debug.log
5
+ /package-lock.json
Original file line number Diff line number Diff line change 1
1
/* eslint-env node */
2
2
module . exports = function ( config ) {
3
3
config . set ( {
4
+ plugins : [
5
+ '@wikimedia/karma-firefox-launcher' ,
6
+ 'karma-chrome-launcher' ,
7
+ 'karma-coverage' ,
8
+ 'karma-qunit'
9
+ ] ,
4
10
browsers : [
5
11
'FirefoxHeadless'
6
12
// 'ChromiumHeadless'
You can’t perform that action at this time.
0 commit comments