Skip to content

replace vite in core with rollup #353

replace vite in core with rollup

replace vite in core with rollup #353

Workflow file for this run

name: CodeQL Security Scan
on:
workflow_dispatch:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
analyze:
name: Analyze JavaScript/TypeScript
runs-on: ubuntu-latest
permissions:
security-events: write
contents: read
actions: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: javascript-typescript
config-file: ./.github/codeql/codeql-config.yml
queries: security-extended
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:javascript-typescript"
output: sarif-results
upload: true
- name: Upload SARIF Results
if: always()
uses: actions/upload-artifact@v7
with:
name: codeql-sarif-${{ github.run_number }}
path: sarif-results/
retention-days: 90
if-no-files-found: warn