We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 685a86d commit bfef365Copy full SHA for bfef365
.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 --loglevel error pack)
53
+ npm --prefix integration/${{ matrix.suite }} install "file:/./$PKG_TARBALL"
54
+ npm --prefix integration/${{ matrix.suite }} test
0 commit comments