Install node

This commit is contained in:
Ben Jackson 2019-08-03 22:02:41 +01:00
commit 1da94177df
2 changed files with 4 additions and 3 deletions

View file

@ -65,8 +65,8 @@ stages:
pool: pool:
vmImage: 'macOS-10.13' vmImage: 'macOS-10.13'
steps: steps:
- bash: brew install macvim - bash: brew unlink node@6 && brew install macvim node
displayName: 'Install vim' displayName: 'Install vim and node'
- bash: go get -u github.com/go-delve/delve/cmd/dlv - bash: go get -u github.com/go-delve/delve/cmd/dlv
displayName: 'Install Delve for Go' displayName: 'Install Delve for Go'

View file

@ -16,7 +16,8 @@ RUN apt-get update && \
tcllib \ tcllib \
gdb \ gdb \
lldb \ lldb \
curl && \ curl \
nodejs && \
apt-get -y autoremove apt-get -y autoremove
RUN ln -fs /usr/share/zoneinfo/Europe/London /etc/localtime && \ RUN ln -fs /usr/share/zoneinfo/Europe/London /etc/localtime && \