-
Notifications
You must be signed in to change notification settings - Fork 7
71 lines (60 loc) · 1.72 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Test nats.js
on:
push:
tags:
- '*'
branches:
- '*'
pull_request:
branches: [main]
types: [opened, edited, reopened]
jobs:
test:
strategy:
matrix:
deno-version: [ 1.44.4 ]
module: [ core, jetstream, kv, obj, services ]
name: test ${{matrix.module}} with local dependencies
runs-on: ubuntu-latest-4-cores
environment: CI
steps:
- name: Git Checkout Deno Module
uses: actions/checkout@v4
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/[email protected]
with:
repo: nats-io/nats-server
name: nats-server
cache: true
- name: Lint Deno Module
run: |
deno fmt --check
deno lint
- name: Test ${{matrix.module}} Module
env:
TMPDIR: ${{ runner.temp }}
CI: true
NGS_CI_USER: ${{ secrets.NGS_CI_USER }}
run: |
deno task test-${{ matrix.module }}
# - 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/[email protected]
# with:
# github-token: ${{ secrets.github_token }}
# path-to-lcov: ./cov.lcov