Skip to content

Commit fd9ead8

Browse files
committed
fix(ci): fix path for integration test
1 parent c99001c commit fd9ead8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
uses: actions/checkout@v2
9191
with:
9292
repository: oauthjs/express-oauth-server
93-
path: github/testing
93+
path: github/testing/express
9494

9595
- name: Setup node ${{ matrix.node }}
9696
uses: actions/setup-node@v2
@@ -101,14 +101,14 @@ 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/**/package-lock.json') }}
104+
key: ${{ runner.os }}-node-${{ matrix.node }}-oauthjs/express-oauth-server-${{ hashFiles('github/testing/express/**/package-lock.json') }}
105105
restore-keys: |
106106
${{ runner.os }}-node-${{ matrix.node }}-oauthjs/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: |
111-
cd github/testing/express-adapter
111+
cd github/testing/express
112112
npm ci
113113
npm install ../../../
114114
npm run test

0 commit comments

Comments
 (0)