Delete seemingly unused file

`check.sh` could not be found anywhere in the codebase.
This commit is contained in:
Sebastian Thiel 2024-08-08 16:12:44 +02:00
parent ee7660f395
commit e1ece12768
No known key found for this signature in database
GPG Key ID: 9CB5EE7895E8268B

View File

@ -1,38 +0,0 @@
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
function rust() {
cargo fmt --check
cargo clippy --all-targets --all-features --tests
cargo test
}
function node() {
pnpm lint
pnpm check
}
if [[ "$#" -eq 0 ]]; then
set -o xtrace
rust
node
else
case "$1" in
rust)
set -o xtrace
rust
;;
node)
set -o xtrace
node
;;
*)
echo "Invalid argument: $1"
exit 1
;;
esac
exit 0
fi