- Rewrite test_latest.sh with real tests for NVM, Node.js, pnpm, Bun, Deno, and version switching - Add #!/bin/bash shebang and set -e to test_stable.sh and test_npmci.sh
14 lines
242 B
Bash
14 lines
242 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# check if npmci is available
|
|
npm init -y
|
|
npmci -v
|
|
|
|
# TODO update npmci to not require package.json
|
|
npmci node install stable
|
|
|
|
# check if npm picks it up
|
|
npmci command pnpm install -g @gitzone/tsrun
|
|
npmci command tsrun -v
|