fix(release,ui): pack @openelement/ui through the compiled-element intrinsic transform (#1301) #2413
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # CodeQL Security Analysis | |
| # | |
| # Analyzes openElement TypeScript source code for security vulnerabilities | |
| # and code quality issues using GitHub's CodeQL engine. | |
| # | |
| # For Deno/TypeScript projects, CodeQL's JS/TS extractor can analyze | |
| # source files directly without a build step. | |
| name: CodeQL | |
| on: | |
| push: | |
| branches: [main, dev] | |
| pull_request: | |
| branches: [main, dev] | |
| schedule: | |
| # Weekly scan on Sunday at 08:00 UTC | |
| - cron: '0 8 * * 0' | |
| workflow_dispatch: | |
| jobs: | |
| analyze: | |
| name: Analyze TypeScript | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ['javascript-typescript'] | |
| steps: | |
| - name: Checkout repository | |
| # v7.0.1 | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| with: | |
| persist-credentials: false | |
| - name: Initialize CodeQL | |
| # v4.37.9 | |
| uses: github/codeql-action/init@cdf488f595d80d6e07e03d4674febd5ab45fa938 | |
| with: | |
| languages: ${{ matrix.language }} | |
| # Deno project: no build step needed for TS source analysis | |
| # CodeQL JS/TS extractor works on raw source files | |
| queries: security-extended,security-and-quality | |
| - name: Perform CodeQL Analysis | |
| # v4.37.9 | |
| uses: github/codeql-action/analyze@cdf488f595d80d6e07e03d4674febd5ab45fa938 | |
| with: | |
| category: '/language:${{matrix.language}}' |