Add checkbox #285
Workflow file for this run
This file contains 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: Forui Presubmit | |
on: | |
workflow_dispatch: {} | |
pull_request: | |
branches: [ main ] | |
paths: | |
- .github/workflows/forui_presubmit.yaml | |
- forui/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
prepare: | |
if: github.actor != 'forus-labs-token-mint[bot]' && github.event.pull_request.draft == false | |
name: Prepare PR for review | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: forui | |
steps: | |
- uses: tibdex/github-app-token@v2 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.TOKEN_MINT_APP_ID }} | |
private_key: ${{ secrets.TOKEN_MINT_PRIVATE_KEY }} | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ steps.generate-token.outputs.token }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- uses: subosito/[email protected] | |
with: | |
cache: true | |
- run: flutter pub get | |
- run: flutter pub global activate import_sorter | |
- run: flutter pub global run import_sorter:main | |
- run: flutter pub run build_runner build --delete-conflicting-outputs | |
- run: dart format --line-length 120 . | |
- run: dart fix --apply | |
# We format the code again since the required trailing comma lint fixes causes code to be formatted differently | |
- run: dart format --line-length 120 . | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
pull: '--rebase --autostash' | |
add: '*' |