|
| 1 | +name: 'Code Analysis' |
| 2 | + |
| 3 | +on: |
| 4 | + pull_request: |
| 5 | + types: |
| 6 | + - opened |
| 7 | + - synchronize |
| 8 | + push: |
| 9 | + branches: |
| 10 | + - develop |
| 11 | + |
| 12 | +permissions: |
| 13 | + id-token: write |
| 14 | + contents: read |
| 15 | + actions: read |
| 16 | + checks: write |
| 17 | + statuses: write |
| 18 | + |
| 19 | +jobs: |
| 20 | + lint: |
| 21 | + name: Lint |
| 22 | + runs-on: ubuntu-24.04 |
| 23 | + steps: |
| 24 | + - name: Load secrets from 1Password |
| 25 | + |
| 26 | + id: secrets |
| 27 | + with: |
| 28 | + export-env: false |
| 29 | + env: |
| 30 | + OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN_RO }} |
| 31 | + # |
| 32 | + APP_ID: 'op://GitHub.Actions/GitHub/corva-bot/APP_ID' |
| 33 | + PRIVATE_KEY: 'op://GitHub.Actions/GitHub/corva-bot/PRIVATE_KEY' |
| 34 | + - name: Checkout sources |
| 35 | + |
| 36 | + with: |
| 37 | + ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} |
| 38 | + - name: Setup Environment |
| 39 | + uses: ./.github/actions/setup-environment |
| 40 | + with: |
| 41 | + build: "false" |
| 42 | + - name: Cache ESLint |
| 43 | + |
| 44 | + with: |
| 45 | + path: .eslintcache |
| 46 | + key: ${{ runner.os }}-eslint-${{ hashFiles('./yarn.lock') }}-${{ hashFiles('./.eslint*') }} |
| 47 | + - name: Lint |
| 48 | + run: npm run lint |
| 49 | + - name: Generate GitHub token |
| 50 | + |
| 51 | + if: ${{ success() || failure() }} |
| 52 | + id: token |
| 53 | + with: |
| 54 | + app-id: ${{ steps.secrets.outputs.APP_ID }} |
| 55 | + private-key: ${{ steps.secrets.outputs.PRIVATE_KEY }} |
| 56 | + - name: Add PR status check |
| 57 | + |
| 58 | + if: ${{ success() || failure() }} |
| 59 | + with: |
| 60 | + token: ${{ steps.token.outputs.token }} |
| 61 | + name: 'Lint' |
| 62 | + status: ${{ job.status }} |
| 63 | + url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} |
| 64 | + description: ${{ job.status == 'success' && 'Linted successfully' || 'Linted with errors. Check PR annotations' }} |
| 65 | + |
| 66 | + format: |
| 67 | + name: Format |
| 68 | + runs-on: ubuntu-24.04 |
| 69 | + steps: |
| 70 | + - name: Load secrets from 1Password |
| 71 | + |
| 72 | + id: secrets |
| 73 | + with: |
| 74 | + export-env: false |
| 75 | + env: |
| 76 | + OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN_RO }} |
| 77 | + # |
| 78 | + APP_ID: 'op://GitHub.Actions/GitHub/corva-bot/APP_ID' |
| 79 | + PRIVATE_KEY: 'op://GitHub.Actions/GitHub/corva-bot/PRIVATE_KEY' |
| 80 | + - name: Checkout sources |
| 81 | + |
| 82 | + with: |
| 83 | + ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} |
| 84 | + - name: Setup Environment |
| 85 | + uses: ./.github/actions/setup-environment |
| 86 | + with: |
| 87 | + build: "false" |
| 88 | + - name: Format |
| 89 | + run: npm run format-check |
| 90 | + - name: Generate GitHub token |
| 91 | + |
| 92 | + if: ${{ success() || failure() }} |
| 93 | + id: token |
| 94 | + with: |
| 95 | + app-id: ${{ steps.secrets.outputs.APP_ID }} |
| 96 | + private-key: ${{ steps.secrets.outputs.PRIVATE_KEY }} |
| 97 | + - name: Add PR status check |
| 98 | + |
| 99 | + if: ${{ success() || failure() }} |
| 100 | + with: |
| 101 | + token: ${{ steps.token.outputs.token }} |
| 102 | + name: 'Format' |
| 103 | + status: ${{ job.status }} |
| 104 | + url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} |
| 105 | + description: ${{ job.status == 'success' && 'Code is properly formatted' || 'Code is not properly formatted. Check PR annotations' }} |
| 106 | + |
| 107 | + test: |
| 108 | + name: Unit Test |
| 109 | + runs-on: ubuntu-24.04 |
| 110 | + steps: |
| 111 | + - name: Load secrets from 1Password |
| 112 | + |
| 113 | + id: secrets |
| 114 | + with: |
| 115 | + export-env: false |
| 116 | + env: |
| 117 | + OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN_RO }} |
| 118 | + # |
| 119 | + APP_ID: 'op://GitHub.Actions/GitHub/corva-bot/APP_ID' |
| 120 | + PRIVATE_KEY: 'op://GitHub.Actions/GitHub/corva-bot/PRIVATE_KEY' |
| 121 | + - name: Checkout sources |
| 122 | + |
| 123 | + with: |
| 124 | + ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} |
| 125 | + - name: Setup Environment |
| 126 | + uses: ./.github/actions/setup-environment |
| 127 | + with: |
| 128 | + build: "false" |
| 129 | + - name: Cache Jest |
| 130 | + |
| 131 | + with: |
| 132 | + path: ./node_modules/.cache/jest |
| 133 | + key: ${{ runner.os }}-jest-${{ hashFiles('./yarn.lock') }} |
| 134 | + - name: Test |
| 135 | + run: npm run test |
| 136 | + - name: Generate GitHub token |
| 137 | + |
| 138 | + if: ${{ success() || failure() }} |
| 139 | + id: token |
| 140 | + with: |
| 141 | + app-id: ${{ steps.secrets.outputs.APP_ID }} |
| 142 | + private-key: ${{ steps.secrets.outputs.PRIVATE_KEY }} |
| 143 | + - name: Add PR status check |
| 144 | + |
| 145 | + if: ${{ success() || failure() }} |
| 146 | + with: |
| 147 | + token: ${{ steps.token.outputs.token }} |
| 148 | + name: 'Unit Test' |
| 149 | + status: ${{ job.status }} |
| 150 | + url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} |
| 151 | + description: ${{ job.status == 'success' && 'Unit tests ran successfully' || 'Unit tests ran with errors. Check PR annotations' }} |
0 commit comments