Skip to content

Commit b7867e7

Browse files
committed
fix(ci): use oauthjs/express-oauth-server for integration testing
1 parent 465b786 commit b7867e7

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/tests-release.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
- name: Checkout express-adapter ${{ matrix.node }}
9090
uses: actions/checkout@v2
9191
with:
92-
repository: node-oauth/express-adapter
92+
repository: oauthjs/express-oauth-server
9393
path: github/testing
9494

9595
# place checkout for other adapters here
@@ -108,9 +108,12 @@ jobs:
108108
109109
# in order to test the adapter we need to use the current state
110110
# we just cloned and install it as local dependency
111-
- run: cd github/testing/express-adapter && npm ci
112-
- run: cd github/testing/express-adapter && npm install ./
113-
- run: cd github/testing/express-adapter && npm run tests
111+
- run: |
112+
PROJECT_PATH=$(pwd)
113+
cd github/testing/express-adapter
114+
npm ci
115+
npm install $PROJECT_PATH
116+
npm run test
114117
115118
# todo repeat with other adapters
116119

0 commit comments

Comments
 (0)