File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ jobs:
172
172
done
173
173
174
174
integration-deno :
175
- needs : [test]
175
+ needs : [test, build ]
176
176
runs-on : ubuntu-latest
177
177
178
178
env :
@@ -185,14 +185,18 @@ jobs:
185
185
186
186
steps :
187
187
- uses : actions/checkout@v4
188
-
188
+ - uses : actions/download-artifact@v3
189
+ with :
190
+ name : package-tarball
189
191
- name : Use Deno ${{ matrix.deno-version }}
190
192
uses : denoland/setup-deno@v1
191
193
with :
192
194
deno-version : ${{ matrix.deno-version }}
193
195
- run : |
194
196
cd integration/deno
195
- deno test --allow-env index.test.ts --allow-net
197
+ deno cache --node-modules-dir index.ts
198
+ tar -xzf ../../${{ needs.build.outputs.tarball-name }} --strip-components=1 -C node_modules/replicate
199
+ deno test --allow-env --allow-net --node-modules-dir index.test.ts
196
200
197
201
integration-nextjs :
198
202
needs : [test, build]
You can’t perform that action at this time.
0 commit comments