Make desktop version adaptable #111
Workflow file for this run
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: Danger | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| danger: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Set up Flutter | |
| uses: ./.github/actions/setup-flutter | |
| - name: Install dependencies | |
| run: flutter pub get | |
| shell: bash | |
| - name: Install Danger-js | |
| run: npm install -g danger | |
| - name: Activate command | |
| run: flutter pub global activate danger_dart | |
| - name: Run danger ci | |
| run: danger_dart ci | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |