Skip to content

Merge pull request #109 from ImagingDataCommons/feat-download-study-d… #17

Merge pull request #109 from ImagingDataCommons/feat-download-study-d…

Merge pull request #109 from ImagingDataCommons/feat-download-study-d… #17

Workflow file for this run

name: slim/build-and-run-unit-tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-and-test:
name: "Build and run unit tests"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.4
- name: Setup Node
uses: actions/setup-node@v4.0.2
with:
node-version: 20.8.1
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test