Skip to content

Commit bfef365

Browse files
committed
Update CI integration tests to run the Replicate tarball
1 parent 685a86d commit bfef365

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,8 @@ jobs:
4747
with:
4848
node-version: ${{ matrix.node-version }}
4949
cache: "npm"
50-
- run: npm --prefix integration/${{ matrix.suite }} ci --omit=dev
51-
- run: npm --prefix integration/${{ matrix.suite }} test
50+
# Build a production tarball and run the integration tests against it.
51+
- run: |
52+
PKG_TARBALL=$(npm --loglevel error pack)
53+
npm --prefix integration/${{ matrix.suite }} install "file:/./$PKG_TARBALL"
54+
npm --prefix integration/${{ matrix.suite }} test

0 commit comments

Comments
 (0)