Bump node-forge from 1.3.3 to 1.4.0 in /functions #852
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: Linting and Analysis | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| branches: | |
| - "**" | |
| workflow_dispatch: | |
| concurrency: | |
| group: linting-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Flutter | |
| uses: ./.github/actions/setup-flutter-with-java | |
| with: | |
| setup_java: "false" | |
| - name: Run Melos Analyze | |
| run: melos analyze | |
| shell: bash | |
| ############################################## | |
| # Melos Coverage for Core | |
| ############################################## | |
| - name: Melos Coverage for Core | |
| run: melos coverage:core | |
| - name: Upload Coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: packages/core/coverage/lcov.info | |
| fail_ci_if_error: true |