Skip to content

Bump node-forge from 1.3.3 to 1.4.0 in /functions #852

Bump node-forge from 1.3.3 to 1.4.0 in /functions

Bump node-forge from 1.3.3 to 1.4.0 in /functions #852

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