Skip to content

Commit 10ed5b9

Browse files
authoredJan 30, 2025··
chore(broker): De-couple with harvesting-utils (#707)
1 parent e50353a commit 10ed5b9

File tree

15 files changed

+304
-160
lines changed

15 files changed

+304
-160
lines changed
 

‎.github/workflows/code-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build:
1111

12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04-l
1313

1414
steps:
1515
- name: Checkout OpenActive Test Suite

‎.github/workflows/docker.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# Master branch only - extra checks
1111
if: ${{ github.ref == 'refs/heads/master' }}
1212
needs: code-tests
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04-l
1414
permissions:
1515
contents: read
1616
packages: write
@@ -48,7 +48,7 @@ jobs:
4848
labels: ${{ steps.meta.outputs.labels }}
4949
# Copied from code-tests.yml, TODO: Remove this duplication
5050
code-tests:
51-
runs-on: ubuntu-latest
51+
runs-on: ubuntu-22.04-l
5252

5353
steps:
5454
- name: Checkout OpenActive Test Suite

‎.github/workflows/reference-implementation.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
tests:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-22.04-l
1212
strategy:
1313
fail-fast: false
1414
matrix:
@@ -98,7 +98,7 @@ jobs:
9898
# Master branch only
9999
if: ${{ github.ref == 'refs/heads/master' }}
100100

101-
runs-on: ubuntu-22.04
101+
runs-on: ubuntu-22.04-l
102102

103103
steps:
104104
# Checkout the repo to seed the contents of ./tests/publish/

‎.vscode/launch.json

+12-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"port": 9229,
8989
},
9090
{
91-
"name": "broker-microservice",
91+
"name": "broker-microservice (default-dev.json)",
9292
"type": "node",
9393
"request": "launch",
9494
"runtimeVersion": "18.17.1",
@@ -98,6 +98,17 @@
9898
"NODE_APP_INSTANCE": "dev"
9999
},
100100
},
101+
{
102+
"name": "broker-microservice (dev.json)",
103+
"type": "node",
104+
"request": "launch",
105+
"runtimeVersion": "18.17.1",
106+
"program": "${workspaceFolder}/packages/openactive-broker-microservice/app.js",
107+
"cwd": "${workspaceFolder}/packages/openactive-broker-microservice/",
108+
"env": {
109+
"NODE_ENV": "dev"
110+
},
111+
},
101112
{
102113
"name": "broker-microservice - jest tests",
103114
"type": "node",

‎packages/openactive-broker-microservice/package-lock.json

+6-78
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/openactive-broker-microservice/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@openactive/data-model-validator": "^3.0.2",
2020
"@openactive/data-models": "^3.0.7",
2121
"@openactive/dataset-utils": "^1.0.1",
22-
"@openactive/harvesting-utils": "^0.1.2",
22+
"@openactive/harvesting-utils": "^0.2.2",
2323
"@openactive/openactive-openid-browser-automation": "file:../openactive-openid-browser-automation",
2424
"@openactive/openactive-openid-client": "file:../openactive-openid-client",
2525
"@openactive/rpde-validator": "^3.0.2",

0 commit comments

Comments
 (0)
Please sign in to comment.