From 536cf9b0bbe0562f6cb57448d485a116890ac268 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 20 Mar 2024 18:39:09 +0100 Subject: [PATCH] Update and rename .github/workflows/webpack.yml to .github/CodeQL.yml Signed-off-by: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> --- .github/CodeQL.yml | 42 +++++++++++++++++++++++++++++++++++ .github/workflows/webpack.yml | 29 ------------------------ 2 files changed, 42 insertions(+), 29 deletions(-) create mode 100644 .github/CodeQL.yml delete mode 100644 .github/workflows/webpack.yml diff --git a/.github/CodeQL.yml b/.github/CodeQL.yml new file mode 100644 index 0000000..1b2124c --- /dev/null +++ b/.github/CodeQL.yml @@ -0,0 +1,42 @@ +name: "CodeQL" + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '26 7 * * 4' + +jobs: + analyze: + name: Analyze + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'javascript-typescript'] + steps: + - name: Checkout repository + 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 + with: + category: "/language:${{matrix.language}}" diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml deleted file mode 100644 index 2fce6e9..0000000 --- a/.github/workflows/webpack.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: NodeJS with Webpack - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [14.x, 16.x, 18.x] - - steps: - - uses: actions/checkout@v3 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - - name: Build - run: | - npm install - npx webpack - - name: Deploy to Cloud Run