-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (47 loc) · 1.24 KB
/
live-test.yaml
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
name: Live test
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
push:
paths:
- ".github/workflows/live-test.yaml"
env:
HOSTNAME: mqtt.nordicsemi.academy
jobs:
# Ensures that the TLS certificate can be fetched
fetch-cert:
runs-on: ubuntu-latest
strategy:
matrix:
protocol: [http, https]
steps:
- name: fetch TLS certificate
run: curl --fail-with-body -v ${{ matrix.protocol }}://${{ env.HOSTNAME }}/${{ env.HOSTNAME }}.crt
live-test:
runs-on: ubuntu-latest
# needs:
# - fetch-cert
strategy:
matrix:
ipv: [ipv4, ipv6]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Keep npm cache around to speed up installs
uses: actions/cache@v4
with:
path: ~/.npm
key: build-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm ci --no-audit
- name: Set up WARP (for IPv6)
if: matrix.ipv == 'ipv6'
uses: fscarmen/[email protected]
- name: Run tests
env:
IPV: ${{ matrix.ipv }}
HOSTNAME: ${{ env.HOSTNAME }}
run: npx tsx --test test.ts