Skip to content

Commit 3c164a3

Browse files
committed
Test local build of replicate
1 parent 06e9fa5 commit 3c164a3

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ jobs:
172172
done
173173
174174
integration-deno:
175-
needs: [test]
175+
needs: [test, build]
176176
runs-on: ubuntu-latest
177177

178178
env:
@@ -185,14 +185,18 @@ jobs:
185185

186186
steps:
187187
- uses: actions/checkout@v4
188-
188+
- uses: actions/download-artifact@v3
189+
with:
190+
name: package-tarball
189191
- name: Use Deno ${{ matrix.deno-version }}
190192
uses: denoland/setup-deno@v1
191193
with:
192194
deno-version: ${{ matrix.deno-version }}
193195
- run: |
194196
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
196200
197201
integration-nextjs:
198202
needs: [test, build]

0 commit comments

Comments
 (0)