image: node:latest cache: paths: - node_modules/ stages: - test - deploy test_async: stage: test script: - npm i - npm run test:ci pages: stage: deploy script: - npm i - cp -r docs/. public artifacts: paths: - public cache: paths: - node_modules only: - master