1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# GitLab CI to build the web-demo application image: node:latest pages: cache: paths: - examples/web-demo/node_modules/ script: - cd examples/web-demo - npm install - npm run build artifacts: paths: - examples/web-demo/public only: - master