Skip to content

module test with specified dependencies #26

module test with specified dependencies

module test with specified dependencies #26

Workflow file for this run

name: Test nats.js
on:
push:
tags:
- '*'
branches:
- '*'
pull_request:
branches: [main]
jobs:
test:
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
runs-on: ubuntu-latest-4-cores
environment: CI
strategy:
matrix:
deno-version: [1.44.4]
steps:
- name: Git Checkout Deno Module
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Use Deno Version ${{ matrix.deno-version }}
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
# this here because dns seems to be wedged on gha
# - name: Add hosts to /etc/hosts
# run: |
# sudo echo "145.40.102.131 demo.nats.io" | sudo tee -a /etc/hosts
- name: Install nats-server
uses: aricart/install-binary@v1.0.0
with:
repo: nats-io/nats-server
name: nats-server
cache: true
- name: Lint Deno Module
run: |
deno fmt --check
deno lint
- name: Test Deno Module
env:
TMPDIR: ${{ runner.temp }}
CI: true
NGS_CI_USER: ${{ secrets.NGS_CI_USER }}
run: |
deno task test
- name: Build nats.js
run: deno bundle --unstable transport-deno/src/connect.ts nats.js
- name: Generate lcov
run: deno coverage --unstable --lcov ./coverage > cov.lcov
- name: Upload coverage
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: ./cov.lcov