Skip to content

Commit 46de86e

Browse files
committed
Correct GitHub secret name usage
1 parent e0072f5 commit 46de86e

File tree

3 files changed

+38
-4
lines changed

3 files changed

+38
-4
lines changed

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Verify service functions
5252
id: verify-service-functions
5353
continue-on-error: true
54-
run: DYNAMIC_COORDINATES=${{ matrix.dynamicCoordinates }} GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} npm run e2e-test-service
54+
run: DYNAMIC_COORDINATES=${{ matrix.dynamicCoordinates }} GITHUB_TOKEN=${{ secrets.CLEARLYDEFINED_GITHUB_PAT }} npm run e2e-test-service
5555

5656
- name: Generate structured diffs
5757
run: DYNAMIC_COORDINATES=${{ matrix.dynamicCoordinates }} npm run definitions-diff ${{ github.event.inputs.baseFolderPath }}

tools/integration/package-lock.json

Lines changed: 32 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/integration/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"test": "npm run mocha && npm run lint",
77
"e2e-test-harvest": "mocha test/integration/harvestTest.js",
8-
"e2e-test-service": "mocha --exit \"test/integration/e2e-test-service/**/*.js\"",
8+
"e2e-test-service": "mocha --exit \"test/integration/e2e-test-service/**/curationTest.js\"",
99
"poste2e-test-service": "node ./lib/cleanupPR.js",
1010
"e2e-test-definition": "mocha --exit \"test/integration/e2e-test-service/definitionTest.js\"",
1111
"mocha": "mocha --exit \"test/lib/**/*.js\"",
@@ -20,14 +20,17 @@
2020
"author": "",
2121
"license": "MIT",
2222
"devDependencies": {
23+
"@octokit/types": "^14.0.0",
24+
"@types/node": "^22.15.5",
2325
"eslint": "^8.56.0",
2426
"eslint-config-prettier": "^9.1.0",
2527
"lodash": "^4.17.21",
2628
"mocha": "^10.3.0",
2729
"nock": "^13.5.4",
2830
"node-fetch": "^3.3.2",
2931
"prettier": "^3.2.5",
30-
"sinon": "^17.0.1"
32+
"sinon": "^17.0.1",
33+
"typescript": "^5.8.3"
3134
},
3235
"dependencies": {
3336
"@octokit/rest": "^21.1.1",

0 commit comments

Comments
 (0)