Skip to content

Commit

Permalink
build (ci): add node version (#1628)
Browse files Browse the repository at this point in the history
  • Loading branch information
subotic committed Mar 11, 2020
1 parent 933127b commit c41bce7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Expand Up @@ -146,6 +146,9 @@ jobs:
name: JS Lib Tests
needs: compile
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [11.x]
steps:
- name: Checkout source
uses: actions/checkout@v1
Expand All @@ -172,6 +175,10 @@ jobs:
run: |
make env-file
make print-env-file
- name: setup required node version
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: run JS lib tests
run: make test-js-lib-integration

Expand Down

0 comments on commit c41bce7

Please sign in to comment.