We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c79d878 commit ef0ab38Copy full SHA for ef0ab38
.github/workflows/node.js.yml
@@ -12,13 +12,16 @@ on:
12
jobs:
13
build:
14
runs-on: ubuntu-latest
15
+ strategy:
16
+ matrix:
17
+ node-version: [14.x, 16.x, 17.x]
18
19
steps:
20
- uses: actions/checkout@v2
- - name: Use Node.js 14.x
21
+ - name: Use Node.js ${{ matrix.node-version }}
22
uses: actions/setup-node@v1
23
with:
- node-version: 14.x
24
+ node-version: ${{ matrix.node-version }}
25
- run: npm install -g codecov
26
- run: npm install
27
- run: npm test
webpack.config.js
@@ -33,6 +33,7 @@ const baseConfig = mode => ({
33
},
34
output: {
35
filename: 'mirador.min.js',
36
+ hashFunction: 'md5',
37
library: 'Mirador',
38
libraryExport: 'default',
39
libraryTarget: 'umd',
0 commit comments