# QI Configuration file, see: https://github.com/amatas/vagrant-gpii-ci --- env: vms: windows10: cpu: 2 # number of cpus memory: 2048 # amount of RAM memory (in Mb) clone: true # use the linked_clone Vagrant feature autostart: true box: inclusivedesign/windows10-eval-x64-Apps stages: # Stages to perform when 'ci test' command is invoked - setup # Install our system-level dependencies, etc. - test # Run the actual tests setup_job: stage: setup script: - choco install nodejs-lts -y - choco install chromedriver -y - npm install -g grunt test_job: stage: test # name of the stage script: # One line per command to execute # Required to avoid problems installing esparse - "npm config set bin-links false --global" - "do.ps1 -c 'v: && npm install && npm test'"