Skip to content

Merge pull request #50 from MDWio/unhandled-exception-reading-non-dicom #98

Merge pull request #50 from MDWio/unhandled-exception-reading-non-dicom

Merge pull request #50 from MDWio/unhandled-exception-reading-non-dicom #98

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: javascript
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v2