-
Notifications
You must be signed in to change notification settings - Fork 13
40 lines (39 loc) · 1.12 KB
/
e2e-test-released-package.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
name: Released package e2e tests
on:
schedule:
- cron: '0 6 * * *'
release:
types: [released]
permissions: read-all
jobs:
e2e-published:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- target: ''
name: 'Basic'
- target: '-f express.override.yml'
name: 'Express'
- target: '-f mixed.override.yml'
name: 'Mixed'
- target: '-f log-injection.override.yml'
name: 'Log injection'
- target: '-f profiling.override.yml'
name: 'Profiling'
- target: '-f typescript.override.yml'
name: 'TypeScript'
name: e2e published ${{ matrix.name }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: 2.x
- name: Get versions
run: |
docker compose version;
docker --version;
- name: Test ${{ matrix.name }} example
working-directory: test/examples
run: docker compose -f e2e.docker-compose.yml ${{ matrix.target }} -f published.override.yml up --exit-code-from test