Skip to content

feat: GitHub Actions CI/CD 파이프라인 구축 #2

feat: GitHub Actions CI/CD 파이프라인 구축

feat: GitHub Actions CI/CD 파이프라인 구축 #2

Workflow file for this run

name: CodeQL
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
schedule:
- cron: '0 3 * * 1'
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: github/codeql-action/init@v3
with:
languages: javascript-typescript
- uses: github/codeql-action/analyze@v3