fix(Select): Updated select value color to primary #748
Workflow file for this run
This file contains 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
name: "CodeQL Workflow" | |
on: | |
pull_request: | |
branches: ["master", "beta"] | |
schedule: | |
- cron: "0 16 * * *" | |
jobs: | |
codeql_javascript: | |
name: "Run CodeQL (JavaScript)" | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ["javascript"] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Run CodeQL Scan | |
uses: github/codeql-action/analyze@v2 |