Skip to content
Snippets Groups Projects
Commit da5073a0 authored by Travis Savo's avatar Travis Savo
Browse files

Merge remote-tracking branch 'origin/master'

parents e23921a3 a82a22e4
No related branches found
No related tags found
No related merge requests found
steps:
- name: Install Node 7
plugin: Shell
command: 'nvm install 7'
- name: Install dependencies
command: 'npm install'
- name: Run tests
command: 'npm test'
\ No newline at end of file
- plugin: Script
name: Install NVM, Install dependencies, run tests
script: |
apt-get update
curl -sL https://deb.nodesource.com/setup_7.x -o setup_7.x
. setup_7.x
apt-get install nodejs
npm install
npm test
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment