Skip to content

Commit

Permalink
Update Node.js version for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lmdulz committed Oct 10, 2024
1 parent 3a10df6 commit dd70dd6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 20.x #${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run CI
Expand Down
3 changes: 3 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/data_for_tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function loadInstance(

export function loadMinimalInstance(): data.DicomDict {
// File Meta Information
console.log("test");

const meta = {
FileMetaInformationGroupLength: "222",
// FileMetaInformationVersion: new Uint8Array([0x00, 0x01]),
Expand Down

0 comments on commit dd70dd6

Please sign in to comment.