10 lines
103 B
Bash
10 lines
103 B
Bash
#!/bin/sh
|
|
|
|
# test availability of node and npm
|
|
npm -v
|
|
node -v
|
|
|
|
# test yarn
|
|
yarn install npmts
|
|
npmts -v
|