2022-08-11 22:43:39 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Tests various components of the build process.
|
|
|
|
|
|
|
|
# Move into the root folder.
|
|
|
|
cd $(dirname $(dirname $0))
|
|
|
|
|
|
|
|
# Perform the basic environment checks and setup.
|
|
|
|
./scripts/setup-node.sh || exit 1
|
|
|
|
|
|
|
|
# Make sure the commits are good.
|
2022-08-01 15:38:27 +00:00
|
|
|
npx commitlint-gitlab-ci -x @commitlint/config-conventional
|
2022-08-11 22:43:39 +00:00
|
|
|
|
|
|
|
# Versions
|
|
|
|
# 2022-08-11 - Initial version
|