ts: replace jquery calls with native javascript functions #36451
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
| # For most projects, this workflow file will not need changing; you simply need | |
| # to commit it to your repository. | |
| # | |
| # You may wish to alter this file to override the set of languages analyzed, | |
| # or to provide custom queries or build logic. | |
| name: "CodeQL scanning - action" | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [main] | |
| schedule: | |
| - cron: '0 22 * * 3' | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Override automatic language detection by changing the below list | |
| # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] | |
| language: ['cpp', 'javascript'] | |
| # Learn more... | |
| # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| with: | |
| # We must fetch at least the immediate parents so that if this is | |
| # a pull request then we can checkout the head. | |
| fetch-depth: 2 | |
| # Initializes the CodeQL tools for scanning. | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| config-file: ./.github/codeql/codeql-config.yml | |
| # If you wish to specify custom queries, you can do so here or in a config file. | |
| # By default, queries listed here will override any specified in a config file. | |
| # Prefix the list here with "+" to use these queries and those in the config file. | |
| # queries: ./path/to/local/query, your-org/your-repo/queries@main | |
| - if: matrix.language == 'cpp' | |
| name: Install dependencies | |
| run: | | |
| sudo sh -c "echo deb-src http://archive.ubuntu.com/ubuntu/ noble main restricted >> /etc/apt/sources.list" | |
| sudo sh -c "echo deb-src http://archive.ubuntu.com/ubuntu/ noble-updates main restricted >> /etc/apt/sources.list" | |
| sudo sh -c "echo deb-src http://security.ubuntu.com/ubuntu/ noble-security main restricted >> /etc/apt/sources.list" | |
| sudo sh -c "echo deb-src http://security.ubuntu.com/ubuntu/ noble-security universe >> /etc/apt/sources.list" | |
| sudo sh -c "echo deb-src http://security.ubuntu.com/ubuntu/ noble-security multiverse >> /etc/apt/sources.list" | |
| sudo apt update | |
| sudo apt install -y libunwind-dev build-essential git libcap-dev python3-polib npm libpng-dev python3-lxml libpam-dev libzstd-dev libssl-dev libcppunit-dev wget cmake | |
| wget https://pocoproject.org/releases/poco-1.12.5p2/poco-1.12.5p2-all.tar.gz | |
| tar xf poco-1.12.5p2-all.tar.gz | |
| cd poco-1.12.5p2-all | |
| ./configure --static --no-tests --no-samples --no-sharedlibs --cflags="-fPIC" --omit=Zip,Data,Data/SQLite,Data/ODBC,Data/MySQL,MongoDB,PDF,CppParser,PageCompiler,Redis,Encodings,ActiveRecord,Prometheus,JWT | |
| make -j `nproc` | |
| sudo make install | |
| - if: matrix.language == 'cpp' | |
| name: Configure | |
| run: | | |
| cd .. && wget --no-verbose https://github.com/CollaboraOnline/online/releases/download/for-code-assets/core-main-assets.tar.gz | |
| tar xf core-main-assets.tar.gz && rm core-main-assets.tar.gz && export COREPATH=$(pwd) | |
| cd online && ./autogen.sh | |
| ./configure --enable-silent-rules --with-lokit-path=${COREPATH}/include --with-lo-path=${COREPATH}/instdir --enable-debug | |
| cd browser && npm update | |
| - if: matrix.language == 'cpp' | |
| name: Build | |
| run: make -j `nproc` build-nocheck | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |