stages:
    - npm

npm-install:
    stage: npm
    script:
        - npm install && npm run build
    only:
        refs:
            - master
    except:
        - tags
    artifacts:
        paths:
            - dist/
        expire_in: 10 hour
