Release v0.1.1 #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |