14 lines
137 B
Bash
Executable file
14 lines
137 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
./scripts/utils/check-node.sh
|
|
|
|
cd docs
|
|
|
|
npm ci
|
|
npm run format:check
|
|
npm run spell:check
|
|
npm run build
|
|
|
|
cd -
|