Complete the mapping of SplitConfiguration (Flutter SDK config) to JS… #672
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: dart test | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| jobs: | |
| test-dart: | |
| name: Test dart | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: 'stable' | |
| - name: Run Pub Get | |
| run: cd splitio/; flutter pub get | |
| - name: Run flutter test | |
| run: cd splitio/; flutter test | |
| - name: Run flutter splitio_android test | |
| run: cd splitio_android/; flutter test | |
| - name: Run flutter splitio_ios test | |
| run: cd splitio_ios/; flutter test | |
| - name: Run flutter splitio_web test | |
| run: cd splitio_web/; flutter test --platform=chrome |