Skip to content

Update newsletter URL #113

Update newsletter URL

Update newsletter URL #113

# 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