Skip to content

Commit c99001c

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

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/tests-release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,19 +92,18 @@ jobs:
9292
repository: oauthjs/express-oauth-server
9393
path: github/testing
9494

95-
# place checkout for other adapters here
9695
- name: Setup node ${{ matrix.node }}
97-
uses: actions/setup-node@v1
96+
uses: actions/setup-node@v2
9897
with:
9998
node-version: ${{ matrix.node }}
10099

101100
- name: Cache dependencies ${{ matrix.node }}
102101
uses: actions/cache@v1
103102
with:
104103
path: ~/.npm
105-
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
104+
key: ${{ runner.os }}-node-${{ matrix.node }}-oauthjs/express-oauth-server-${{ hashFiles('github/testing/**/package-lock.json') }}
106105
restore-keys: |
107-
${{ runner.os }}-node-${{ matrix.node }}
106+
${{ runner.os }}-node-${{ matrix.node }}-oauthjs/express-oauth-server
108107
109108
# in order to test the adapter we need to use the current state
110109
# we just cloned and install it as local dependency

0 commit comments

Comments
 (0)