➕ Add EVM on Flow Test and Main Network Deployments #442
Workflow file for this run
This file contains 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, pull_request, workflow_dispatch] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
analyse: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
security-events: write | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
language: | |
- javascript-typescript | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Initialise CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
queries: +security-and-quality | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v3 | |
- name: Perform CodeQL analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{ matrix.language }}" |