mirror of
https://github.com/Borales/actions-yarn.git
synced 2026-03-16 00:22:49 +08:00
11 lines
160 B
Bash
Executable File
11 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Exit if any subcommand fails
|
|
set -e
|
|
|
|
# Ensure we're always running from the project root
|
|
cd "$(dirname "$0")/.."
|
|
|
|
bats test/*.bats
|
|
shellcheck *.sh
|