chore(deps): update dependency @types/react-test-renderer to v19.3.0 #974
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: CodeQL | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'apps/mobile/**' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'apps/mobile/**' | |
| schedule: | |
| - cron: '0 4 * * 1' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| security-events: write | |
| jobs: | |
| analyze-kotlin: | |
| name: Analyze (kotlin) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| - name: Setup build environment | |
| uses: ./.github/actions/setup-build | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4 | |
| with: | |
| languages: java-kotlin | |
| queries: security-and-quality | |
| config-file: ./.github/codeql-config.yml | |
| - name: Build | |
| run: | | |
| cd apps/mobile/android | |
| chmod +x gradlew | |
| ./gradlew compileGmsDebugSources compileFossDebugSources --no-daemon | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4 | |
| with: | |
| category: "/language:java-kotlin" | |
| analyze-javascript: | |
| name: Analyze (javascript) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4 | |
| with: | |
| languages: javascript-typescript | |
| queries: security-and-quality | |
| config-file: ./.github/codeql-config.yml | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4 | |
| with: | |
| category: "/language:javascript-typescript" |