11 lines
151 B
Bash
Executable File
11 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xeuo pipefail
|
|
|
|
node action.js json >/dev/null
|
|
node action.js txt
|
|
# check default arg
|
|
node action.js >/dev/null
|
|
node action.js shell
|
|
|