Skip to content

chore(deps): update actions/create-github-app-token action to v3 #43

chore(deps): update actions/create-github-app-token action to v3

chore(deps): update actions/create-github-app-token action to v3 #43

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."