[ποΈ][Menu]: Fix keyboard interactions on RTL (#96) #29
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 | |
on: | |
push: | |
branches: | |
- "next" | |
pull_request: | |
schedule: | |
# on sunday of each month at 5:55 | |
- cron: "55 5 * * 0" | |
workflow_call: | |
jobs: | |
analyze: | |
name: "Analyze" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
language: | |
- javascript | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "π¬ Initialize CodeQL" | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: "ποΈ Autobuild" | |
uses: github/codeql-action/autobuild@v3 | |
- name: "π§ Perform CodeQL Analysis" | |
uses: github/codeql-action/analyze@v3 |