You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
set -xe
|
|
|
|
echo "Running on $(node -v)"
|
|
|
|
apk add make g++ python
|
|
npm test --unsafe-perm
|
|
|
|
./node_modules/.bin/node-pre-gyp configure
|
|
./node_modules/.bin/node-pre-gyp build
|
|
./node_modules/.bin/node-pre-gyp package
|