Skip to content

Merge pull request #154 from shopware/dependabot/npm_and_yarn/all-ba1… #180

Merge pull request #154 from shopware/dependabot/npm_and_yarn/all-ba1…

Merge pull request #154 from shopware/dependabot/npm_and_yarn/all-ba1… #180

Workflow file for this run

name: "Security"
on:
push:
paths:
- '**/*.js'
- '**/*.ts'
- package.json
- .github/workflows/js.yml
branches:
- "trunk"
pull_request:
paths:
- '**/*.js'
- '**/*.ts'
- package.json
- .github/workflows/js.yml
branches:
- "trunk"
schedule:
- cron: '0 6 * * 4'
jobs:
analyze:
name: Analyze
runs-on: 'ubuntu-latest'
timeout-minutes: 360
permissions:
security-events: write
actions: read
contents: read
strategy:
fail-fast: false
matrix:
language: [ 'javascript-typescript' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"