Skip to content

Commit f339b0c

Browse files
committed
Update for 2024: Minor updates
1 parent c15cead commit f339b0c

File tree

5 files changed

+15
-9380
lines changed

5 files changed

+15
-9380
lines changed

.github/workflows/CI.yml

+2-12
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,8 @@ jobs:
1010
strategy:
1111
matrix:
1212
node:
13-
- 10.x
14-
- 12.x
15-
- 14.x
16-
- 16.x
1713
- 18.x
14+
- 20.x
1815

1916
# Packages 'firefox' and 'chromium' are pre-installed.
2017
#
@@ -26,20 +23,13 @@ jobs:
2623

2724
- uses: actions/checkout@v3
2825

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-
3626
- name: Use Node.js ${{ matrix.node }}
3727
uses: actions/setup-node@v3
3828
with:
3929
node-version: ${{ matrix.node }}
4030

4131
- name: Install
42-
run: npm ci
32+
run: npm install
4333

4434
- name: Tests
4535
run: npm test

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/coverage
33
/node_modules
44
/npm-debug.log
5+
/package-lock.json

karma.conf.js

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
/* eslint-env node */
22
module.exports = function (config) {
33
config.set({
4+
plugins: [
5+
'@wikimedia/karma-firefox-launcher',
6+
'karma-chrome-launcher',
7+
'karma-coverage',
8+
'karma-qunit'
9+
],
410
browsers: [
511
'FirefoxHeadless'
612
// 'ChromiumHeadless'

0 commit comments

Comments
 (0)