Skip to content

chore(deps): update jdx/mise-action action to v4 #44

chore(deps): update jdx/mise-action action to v4

chore(deps): update jdx/mise-action action to v4 #44

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Check bash syntax
run: |
for script in bin/*; do
[[ -d "$script" ]] && continue
echo "Checking $script..."
bash -n "$script"
done
echo "All scripts passed syntax check."