Skip to content

Release v0.1.1

Release v0.1.1 #9

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: shellcheck the helper scripts
run: shellcheck plugins/flutterflow/scripts/*.sh
- name: POSIX sh syntax check
run: |
for f in plugins/flutterflow/scripts/*.sh; do
echo "sh -n $f"
sh -n "$f"
done
- name: Run helper-script tests
run: |
for f in plugins/flutterflow/scripts/*.test.sh; do
echo "test: $f"
bash "$f"
done
- name: Validate JSON configs
run: |
for f in $(git ls-files '*.json'); do
echo "json: $f"
python3 -c 'import json,sys; json.load(open(sys.argv[1]))' "$f"
done