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.
13 lines
221 B
Bash
13 lines
221 B
Bash
2 years ago
|
#!/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
|