Skip to content

Commit

Permalink
[BUMP] CI dependencies and lib version (#583)
Browse files Browse the repository at this point in the history
* [BUMP] CI dependencies and lib version
* [BUMP] NBC to 1.16.0
  • Loading branch information
aricart committed Aug 16, 2023
1 parent e6b8c84 commit a75b672
Show file tree
Hide file tree
Showing 5 changed files with 154 additions and 251 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/natsjs.yml
Expand Up @@ -13,7 +13,8 @@ jobs:
test:
strategy:
matrix:
node-version: [20.x, 19.x, 18.x, 16.x]
node-version: [20.x, 18.x, 16.x]
deno-version: [1.36.1]

runs-on: ubuntu-latest

Expand All @@ -27,11 +28,11 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Use Deno Version ${{ matrix.deno-version }}
uses: denoland/setup-deno@v1.1.1
uses: denoland/setup-deno@v1
with:
deno-version: 1.30.3
deno-version: ${{ matrix.deno-version }}
- name: Set NATS Server Version
run: echo "NATS_VERSION=v2.9.19" >> $GITHUB_ENV
run: echo "NATS_VERSION=v2.9.21" >> $GITHUB_ENV
- name: Get nats-server
run: |
wget "https://github.com/nats-io/nats-server/releases/download/$NATS_VERSION/nats-server-$NATS_VERSION-linux-amd64.zip" -O tmp.zip
Expand All @@ -43,11 +44,11 @@ jobs:
env:
CI: true
- name: Gather coverage
if: matrix.node-version == '18.x'
if: matrix.node-version == '20.x'
run: npm run coveralls
- name: Upload coverage
uses: coverallsapp/github-action@v1.2.5
if: matrix.node-version == '18.x'
if: matrix.node-version == '20.x'
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: ./coverage/lcov.info

0 comments on commit a75b672

Please sign in to comment.