Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
version: 4.0.19
actions-cache-folder: ".emsdk-cache"
- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "22.16.0"
node-version: "24.13.1"
registry-url: "https://registry.npmjs.org"
- name: Install yarn package manager
run: npm install --global yarn
Expand Down
15 changes: 5 additions & 10 deletions .github/workflows/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
version: 4.0.19
actions-cache-folder: ".emsdk-cache"
- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "22.16.0"
node-version: "24.13.1"
- name: Install yarn package manager
run: npm install --global yarn
- name: Install dependencies
Expand All @@ -43,9 +43,6 @@ jobs:
run: |
yarn run clean
yarn run build
- name: Perform npm package publish dry run
run: |
npm publish . --dry-run
macos:
name: Build and run tests on macOS
runs-on: ${{ matrix.os }}
Expand All @@ -64,9 +61,9 @@ jobs:
version: 4.0.19
actions-cache-folder: ".emsdk-cache"
- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "22.16.0"
node-version: "24.13.1"
- name: Install yarn package manager
run: npm install --global yarn
- name: Install dependencies
Expand All @@ -90,6 +87,4 @@ jobs:
- name: Build WebAssembly bindings
run: |
yarn run clean
yarn run build
- name: Perform npm package publish dry run
run: npm publish . --dry-run
yarn run build
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@imagingdatacommons/dicomicc",
"version": "0.2.3",

"description": "WASM bindings and JavaScript API for the dicomicc C library",
"main": "dist/dicomiccwasm.js",
"publishConfig": {
Expand All @@ -24,7 +25,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/imagingdatacommons/libdicomicc.git"
"url": "git+https://github.com/imagingdatacommons/libdicomicc.git"
},
"keywords": [
"ICC",
Expand Down
Loading