-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (44 loc) · 1.1 KB
/
mq.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
name: mq
on:
push:
jobs:
activemq:
runs-on: ubuntu-latest
defaults:
run:
working-directory: activemq
steps:
- uses: davidkhala/setup-dockerode@main
- run: |
curl -sSL https://raw.githubusercontent.com/davidkhala/mq/main/activeMQ/compose.yaml > compose.yaml
docker compose up -d
- run: npm i
- run: npm test
rabbitmq:
runs-on: ubuntu-latest
defaults:
run:
working-directory: rabbitmq
steps:
- uses: davidkhala/setup-dockerode@main
- run: npm i
- run: npm test
env:
CLOUDAMQP_PASSWORD: ${{secrets.CLOUDAMQP_PASSWORD}}
solace:
runs-on: ubuntu-latest
defaults:
run:
working-directory: solace
steps:
- uses: actions/checkout@main
- run: |
curl -sSL https://raw.githubusercontent.com/davidkhala/mq/main/solace/compose.yaml > compose.yaml
docker compose up -d
- uses: actions/setup-node@main
with:
check-latest: true
node-version: lts/*
- run: npm i
- run: sleep 15
- run: npm test