Skip to content

Commit cbc4d98

Browse files
authored
Merge pull request #12 from rflamand/feature/rflamand/bump_node_version_to_lts_v24
Update node version in github actions
2 parents d3bd545 + 3cece1f commit cbc4d98

3 files changed

Lines changed: 9 additions & 13 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
version: 4.0.19
2828
actions-cache-folder: ".emsdk-cache"
2929
- name: Setup Node
30-
uses: actions/setup-node@v4
30+
uses: actions/setup-node@v6
3131
with:
32-
node-version: "22.16.0"
32+
node-version: "24.13.1"
3333
registry-url: "https://registry.npmjs.org"
3434
- name: Install yarn package manager
3535
run: npm install --global yarn

.github/workflows/run_unit_tests.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
version: 4.0.19
2424
actions-cache-folder: ".emsdk-cache"
2525
- name: Setup Node
26-
uses: actions/setup-node@v4
26+
uses: actions/setup-node@v6
2727
with:
28-
node-version: "22.16.0"
28+
node-version: "24.13.1"
2929
- name: Install yarn package manager
3030
run: npm install --global yarn
3131
- name: Install dependencies
@@ -43,9 +43,6 @@ jobs:
4343
run: |
4444
yarn run clean
4545
yarn run build
46-
- name: Perform npm package publish dry run
47-
run: |
48-
npm publish . --dry-run
4946
macos:
5047
name: Build and run tests on macOS
5148
runs-on: ${{ matrix.os }}
@@ -64,9 +61,9 @@ jobs:
6461
version: 4.0.19
6562
actions-cache-folder: ".emsdk-cache"
6663
- name: Setup Node
67-
uses: actions/setup-node@v4
64+
uses: actions/setup-node@v6
6865
with:
69-
node-version: "22.16.0"
66+
node-version: "24.13.1"
7067
- name: Install yarn package manager
7168
run: npm install --global yarn
7269
- name: Install dependencies
@@ -90,6 +87,4 @@ jobs:
9087
- name: Build WebAssembly bindings
9188
run: |
9289
yarn run clean
93-
yarn run build
94-
- name: Perform npm package publish dry run
95-
run: npm publish . --dry-run
90+
yarn run build

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@imagingdatacommons/dicomicc",
33
"version": "0.2.3",
4+
45
"description": "WASM bindings and JavaScript API for the dicomicc C library",
56
"main": "dist/dicomiccwasm.js",
67
"publishConfig": {
@@ -24,7 +25,7 @@
2425
},
2526
"repository": {
2627
"type": "git",
27-
"url": "https://github.com/imagingdatacommons/libdicomicc.git"
28+
"url": "git+https://github.com/imagingdatacommons/libdicomicc.git"
2829
},
2930
"keywords": [
3031
"ICC",

0 commit comments

Comments
 (0)