Add workaround to silence Premailex SSL errors #139
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: waydowntown_app checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - "waydowntown_app/**" | |
| - ".github/workflows/ci-waydowntown-app.yml" | |
| jobs: | |
| test-ios: | |
| runs-on: macOS-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: futureware-tech/simulator-action@v3 | |
| with: | |
| model: "iPhone 15" | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| # Create asset file in .gitignore | |
| - run: touch .env.local | |
| working-directory: waydowntown_app | |
| - run: flutter pub get | |
| working-directory: waydowntown_app | |
| - run: flutter test | |
| working-directory: waydowntown_app | |
| test-android: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| # Create asset file in .gitignore | |
| - run: touch .env.local | |
| working-directory: waydowntown_app | |
| - run: flutter pub get | |
| working-directory: waydowntown_app | |
| - name: Run integration tests | |
| uses: reactivecircus/android-emulator-runner@v2 | |
| with: | |
| working-directory: waydowntown_app | |
| api-level: 21 | |
| arch: x86_64 | |
| profile: Nexus 6 | |
| script: flutter test --verbose |