Skip to content

Commit 8081b9c

Browse files
authored
Merge pull request #55 from jens-ox/master
Update dependencies and add GitHub Action
2 parents 715739b + b2b182b commit 8081b9c

File tree

3 files changed

+57
-11
lines changed

3 files changed

+57
-11
lines changed

.github/workflows/test.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: testing
2+
on: push
3+
4+
jobs:
5+
test:
6+
strategy:
7+
matrix:
8+
node-version: [20.x, 18.x, 16.x]
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Use Node.js ${{ matrix.node-version }}
13+
uses: actions/setup-node@v4
14+
with:
15+
node-version: ${{ matrix.node-version }}
16+
cache: "npm"
17+
- run: npm install
18+
- run: npm run build
19+
# TODO: activate this once a linting setup exists
20+
# - name: Lint
21+
# if: matrix.os != 'windows-latest'
22+
# run: npm run lint
23+
- run: npm run test

package-lock.json

+32-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"dependencies": {
1010
"@wearemothership/dicom-character-set": "^1.0.4-opt.1",
1111
"jpeg-lossless-decoder-js": "^2.0.7",
12-
"pako": "^1.0",
12+
"pako": "^2.1",
1313
"fflate": "*",
14-
"xss": "0.0.9"
14+
"xss": "1.0.14"
1515
},
1616
"devDependencies": {
1717
"esbuild": "*",

0 commit comments

Comments
 (0)