Skip to content

Merge pull request #22 from danburonline/dependabot/npm_and_yarn/semv… #117

Merge pull request #22 from danburonline/dependabot/npm_and_yarn/semv…

Merge pull request #22 from danburonline/dependabot/npm_and_yarn/semv… #117

# Analyze the repository as soon as there is a new merge into the main branch
name: "Static Analysis"
on:
push:
branches:
- main
jobs:
analyze:
name: Analyze repository
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["javascript"]
steps:
- name: Checkout the branch
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1