-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (38 loc) · 1.13 KB
/
e2e-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
name: E2E release compatibility
on:
merge_group:
push:
pull_request:
jobs:
end_to_end_release_compatibility:
name: E2E release compatibility
runs-on: ubuntu-latest
steps:
- name: Install `just`
uses: extractions/setup-just@v1
- name: Log in to GitHub Container Registry 📦
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Check out `ndc-postgres`
uses: actions/checkout@v3
with:
repository: hasura/ndc-postgres
path: ndc-postgres
- name: Check out `v3-engine`
uses: actions/checkout@v3
with:
repository: hasura/v3-engine
path: v3-engine
token: ${{ secrets.GITHUB_TOKEN }}
- name: Check out `v3-e2e-testing`
uses: actions/checkout@v3
with:
repository: hasura/v3-e2e-testing
path: v3-e2e-testing
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run the tests
run: just test-postgres-new
working-directory: v3-e2e-testing