mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 16:06:56 +00:00
11 lines
147 B
Bash
Executable file
11 lines
147 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -z "$NODE_PATH" ]; then
|
|
export NODE_PATH=/node_modules
|
|
else
|
|
export NODE_PATH=$NODE_PATH:/node_modules
|
|
fi
|
|
|
|
node /run.js
|