image: alpine:latest before_script: | apk update apk add nodejs npm pages: stage: deploy script: | mkdir ./public/WuppiMini cd ./src/WuppiMini npm install node ./index.js html cp ./index.js ./index.html ../../public/WuppiMini/ artifacts: paths: - public only: - master