chore(deps): bump node-forge from 1.3.1 to 1.3.2 in /doc #564
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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| flutter_modular: | |
| name: flutter modular | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-java@v1 | |
| with: | |
| java-version: '12.x' | |
| - uses: subosito/flutter-action@v1 | |
| with: | |
| flutter-version: '3.10.6' | |
| - name: get packages | |
| run: flutter pub get | |
| working-directory: flutter_modular | |
| - name: Flutter Test | |
| run: flutter test --coverage --coverage-path ../coverage/lcov.info | |
| working-directory: flutter_modular | |
| - name: Codecov GitHub Action | |
| uses: codecov/codecov-action@v2.0.3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| modular_core: | |
| name: modular core | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-java@v1 | |
| with: | |
| java-version: '12.x' | |
| - uses: subosito/flutter-action@v1 | |
| with: | |
| flutter-version: '3.10.6' | |
| - name: get packages | |
| run: flutter pub get | |
| working-directory: modular_core | |
| - name: Flutter Test | |
| run: flutter test --coverage --coverage-path ../coverage/lcov.info | |
| working-directory: modular_core | |
| - name: Codecov GitHub Action | |
| uses: codecov/codecov-action@v2.0.3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| shelf_modular: | |
| name: shelf modular | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-java@v1 | |
| with: | |
| java-version: '12.x' | |
| - uses: subosito/flutter-action@v1 | |
| with: | |
| flutter-version: '3.10.6' | |
| - name: get packages | |
| run: flutter pub get | |
| working-directory: shelf_modular | |
| - name: Flutter Test | |
| run: flutter test --coverage --coverage-path ../coverage/lcov.info | |
| working-directory: shelf_modular | |
| - name: Codecov GitHub Action | |
| uses: codecov/codecov-action@v2.0.3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |