Test npm deployment in CI

pull/44/head
Clement Michaud 2017-06-16 21:11:54 +02:00
parent 29c8e7e954
commit a84efdb8be
4 changed files with 39 additions and 1 deletions

2
.gitignore vendored
View File

@ -29,3 +29,5 @@ notifications/
dist/ dist/
.nyc_output/ .nyc_output/
*.tgz

View File

@ -24,8 +24,9 @@ script:
- docker-compose build - docker-compose build
- docker-compose up -d - docker-compose up -d
- sleep 5 - sleep 5
- ./scripts/check_services.sh - ./scripts/check-services.sh
- npm run int-test - npm run int-test
- ./scripts/npm-deployment-test.sh
after_success: after_success:
- ./scripts/docker-publish.sh - ./scripts/docker-publish.sh

View File

@ -0,0 +1,35 @@
#!/bin/bash
NPM_UNPACK_DIR=/tmp/npm-unpack/test
echo "Packing npm package into a tarball"
npm pack
AUTHELIA_PACKAGE=`ls | grep "authelia-\([0-9]\+.\)\{2\}[0-9]\+.tgz"`
echo "Authelia package is ${AUTHELIA_PACKAGE}"
echo "Copy package into "${NPM_UNPACK_DIR}" to test unpacking"
mkdir -p ${NPM_UNPACK_DIR}
cp ${AUTHELIA_PACKAGE} ${NPM_UNPACK_DIR}
pushd ${NPM_UNPACK_DIR}
echo "Test unpacking..."
npm install ${AUTHELIA_PACKAGE}
RET_CODE=$?
# echo ${RET_CODE}
popd
if [ "$RET_CODE" != "0" ]
then
echo "Unpacking failed..."
exit 1
else
echo "Unpacking succeeded"
exit 0
fi