fix(Condition builder): initial state getting reset on re-rendering (… #17052
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 # Run code security scans | |
on: | |
pull_request: | |
branches: | |
- main | |
- v1 | |
- 'release\/v2**' | |
push: | |
branches: | |
- main | |
- v1 | |
merge_group: | |
types: [checks_requested] | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
CodeQL: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 # https://github.com/actions/checkout | |
- name: Initialize | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: javascript | |
- name: Analyze | |
uses: github/codeql-action/analyze@v2 |