-
Notifications
You must be signed in to change notification settings - Fork 2
67 lines (55 loc) · 1.65 KB
/
Copy pathinteroperability.yml
File metadata and controls
67 lines (55 loc) · 1.65 KB
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
name: Node.js interoperability
on:
pull_request:
paths:
- ".github/workflows/interoperability.yml"
- "Makefile"
- "pyproject.toml"
- "scripts/node_interoperability.py"
- "scripts/run-node-interoperability.sh"
- "scripts/verify-node-interoperability.mjs"
- "src/**"
- "uv.lock"
workflow_dispatch:
permissions:
contents: read
jobs:
interoperability:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
path: aep-python
- uses: actions/checkout@v7
with:
repository: aep-foundation/aep-node
path: aep-node
- uses: actions/setup-python@v7
with:
python-version: "3.14"
- uses: astral-sh/setup-uv@v10.1.0
with:
version: "0.11.8"
- uses: actions/setup-node@v7
with:
node-version: 24
- run: corepack enable
- name: Install Python dependencies
working-directory: aep-python
run: uv sync --all-groups --locked
- name: Install Node.js dependencies
working-directory: aep-node
run: pnpm install --frozen-lockfile
- name: Run bidirectional interoperability
working-directory: aep-python
run: make interoperability
env:
AEP_INTEROP_OUTPUT_DIR: .interop/reports
AEP_NODE_DIR: ../aep-node
- name: Upload interoperability report
uses: actions/upload-artifact@v7
with:
name: aep-python-node-interoperability
path: aep-python/.interop/reports/aep-python-node-interoperability.json
if-no-files-found: error
retention-days: 7