23 lines
726 B
Bash
Executable File
23 lines
726 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
# Pack the module into a tarball
|
|
npm pack
|
|
tarball="$(realpath puppeteer-*.tgz)"
|
|
cd "$(mktemp -d)"
|
|
# Check we can install from the tarball.
|
|
# This emulates installing from npm and ensures that:
|
|
# 1. we publish the right files in the `files` list from package.json
|
|
# 2. The install script works and correctly exits without errors
|
|
# 3. Requiring Puppeteer from Node works.
|
|
npm install --loglevel silent "${tarball}"
|
|
node --eval="require('puppeteer')"
|
|
|
|
# Again for Firefox
|
|
TMPDIR="$(mktemp -d)"
|
|
cd $TMPDIR
|
|
PUPPETEER_PRODUCT=firefox npm install --loglevel silent "${tarball}"
|
|
node --eval="require('puppeteer')"
|
|
rm "${tarball}"
|
|
ls $TMPDIR/node_modules/puppeteer/.local-firefox/linux-79.0a1/firefox/firefox
|