mirror of
https://github.com/opentofu/setup-opentofu.git
synced 2025-12-05 23:34:45 +00:00
7 lines
161 B
Bash
Executable file
7 lines
161 B
Bash
Executable file
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
npm run lint || (npm install && npm run lint)
|
|
npm run test
|
|
npm audit --audit-level=high
|
|
npm run build && git add dist/
|