This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/bin/bash
|
|
|
|
cd "$(dirname $0)/.."
|
|
|
|
set -eu
|
|
|
|
echo "Validating apps.json..."
|
|
|
|
jsonlint-cli -s schema.json src/apps.json
|
|
|
|
echo "Validating regular expressions..."
|
|
|
|
./bin/validate-regex
|
|
|
|
echo "Validating icons..."
|
|
|
|
./bin/validate-icons
|
|
|
|
echo "Running tests..."
|
|
|
|
npm run test
|