Skip to content

flashing

flashing #232

Workflow file for this run

name: CodeQL Static Code Analysis
on:
pull_request:
branches: [main]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
matrix:
language: ['typescript' , 'javascript']
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Build code
uses: actions/setup-node@v3
with:
node-version: '18'
- run: |
if [ -f package-lock.json ]; then
npm install
elif [ -f yarn.lock ]; then
yarn install
fi
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2