Skip to content

Commit a47e867

Browse files
committed
fix(ci): use node-oauth/express-oauth-server for integration test
1 parent 916c613 commit a47e867

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/tests-release.yml

Lines changed: 4 additions & 3 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: oauthjs/express-oauth-server
92+
repository: node-oauth/express-oauth-server
9393
path: github/testing/express
9494

9595
- name: Setup node ${{ matrix.node }}
@@ -101,15 +101,16 @@ jobs:
101101
uses: actions/cache@v1
102102
with:
103103
path: ~/.npm
104-
key: ${{ runner.os }}-node-${{ matrix.node }}-oauthjs/express-oauth-server-${{ hashFiles('github/testing/express/**/package-lock.json') }}
104+
key: ${{ runner.os }}-node-${{ matrix.node }}-node-oauth/express-oauth-server-${{ hashFiles('github/testing/express/**/package-lock.json') }}
105105
restore-keys: |
106-
${{ runner.os }}-node-${{ matrix.node }}-oauthjs/express-oauth-server
106+
${{ runner.os }}-node-${{ matrix.node }}-node-oauth/express-oauth-server
107107
108108
# in order to test the adapter we need to use the current state
109109
# we just cloned and install it as local dependency
110110
- run: |
111111
cd github/testing/express
112112
npm install ../../../
113+
cd ../../../
113114
npm run test
114115
115116
# todo repeat with other adapters

0 commit comments

Comments
 (0)