update recruitmentStatus in clinicaltrial to match new format #100
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [12, 14, 16] | |
name: node-${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm ci | |
- name: install peers | |
run: npm install @bcgsc-pori/graphkb-parser | |
- run: npm test | |
- name: Publish Unit Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v1.6 | |
if: matrix.node == 12 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
files: coverage/junit.xml | |
- uses: codecov/codecov-action@v1 | |
if: matrix.node == 12 | |
with: | |
yml: codecov.yml | |
token: ${{ secrets.CODECOV_TOKEN }} |