We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 543ed75 commit 464d237Copy full SHA for 464d237
.github/workflows/ci.yml
@@ -47,5 +47,8 @@ jobs:
47
with:
48
node-version: ${{ matrix.node-version }}
49
cache: "npm"
50
- - run: npm --prefix integration/${{ matrix.suite }} ci --omit=dev
51
- - run: npm --prefix integration/${{ matrix.suite }} test
+ # Build a production tarball and run the integration tests against it.
+ - run: |
52
+ PKG_TARBALL=$(npm --silent pack --pack-destination integration/${{ matrix.suite }})
53
+ npm --prefix integration/${{ matrix.suite }} install "file:/./$PKG_TARBALL"
54
+ npm --prefix integration/${{ matrix.suite }} test
0 commit comments