Code quality #2389
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: 'Code quality' | |
| on: | |
| push: | |
| branches: ['develop'] | |
| schedule: | |
| - cron: '32 13 * * 0' | |
| permissions: | |
| contents: read | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| # Blacksmith is much faster and gives better dashboards than github actions, but we are not being sponsored anymore so had to revert. | |
| # runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'blacksmith-4vcpu-ubuntu-2204' }} | |
| runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} | |
| timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ['javascript'] | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d | |
| with: | |
| egress-policy: audit | |
| - name: Checkout repository | |
| uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@c618c9bddbf8ce520050acf14e9bb6c220e22931 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@c618c9bddbf8ce520050acf14e9bb6c220e22931 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@c618c9bddbf8ce520050acf14e9bb6c220e22931 | |
| with: | |
| category: '/language:${{ matrix.language }}' |