Skip to content

Commit

Permalink
MT-71 Add CI checks for Javascript cients.
Browse files Browse the repository at this point in the history
  • Loading branch information
gnrunge committed May 27, 2021
1 parent 9c81e39 commit 99b1be6
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion .github/workflows/mynmr_tools_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,37 @@ jobs:
cd clients/java
mvn compile
mvn test
# JavaScript Client (latest Node version)
javascript-latest-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Javascript client test
run: |
cd clients/js
npm ci
npm run test
# JavaScript Client (lower npm version)
javascript-older-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
- name: Javascript client test
run: |
cd clients/js
npm install -g npm@5.7.1
npm version
npm ci
npm run test
# Python Client
python:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 99b1be6

Please sign in to comment.