Fixes ArrayBuffer
and TypedArray.prototype.@@iterator
detection in IE11
#107
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" | |
on: | |
schedule: | |
- cron: '0 4 * * 1' | |
merge_group: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
permissions: | |
security-events: write | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'javascript' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
queries: security-extended | |
config: | | |
paths-ignore: | |
- polyfills/Intl | |
- polyfills/__dist/Intl | |
- polyfills/__dist/Intl.* | |
- test/polyfills | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run build | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |