Skip to content

build(deps-dev): bump next from 15.3.3 to 15.4.7 in the npm_and_yarn … #95

build(deps-dev): bump next from 15.3.3 to 15.4.7 in the npm_and_yarn …

build(deps-dev): bump next from 15.3.3 to 15.4.7 in the npm_and_yarn … #95

name: "CodeQL Security Analysis"
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
schedule:
- cron: "0 6 * * 1"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: javascript
queries: security-and-quality
- name: Setup pnpm
uses: pnpm/action-setup@d648c2dd069001a242c621c8306af467f150e99d
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3