Skip to content

fix(metrics): simplify macOS memory to use Node.js os module #211

fix(metrics): simplify macOS memory to use Node.js os module

fix(metrics): simplify macOS memory to use Node.js os module #211

Workflow file for this run

name: "CodeQL Advanced"
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "33 11 * * 3"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: ${{ github.event_name != 'push' }}
permissions: {}
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-24.04
timeout-minutes: 5
permissions:
security-events: write # To upload the results of the analysis
packages: read # To fetch CodeQL packs from GitHub Packages, if you are using any.
actions: read # For private repos
contents: read # For private repos to clone the repo.
strategy:
fail-fast: false
matrix:
include:
- language: actions
- language: javascript-typescript
steps:
- name: Checkout Repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Start Workflow Telemetry
uses: ./
- name: Initialize CodeQL
uses: github/codeql-action/init@9e907b5e64f6b83e7804b09294d44122997950d6 # v4.32.3
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-config.yml
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@9e907b5e64f6b83e7804b09294d44122997950d6 # v4.32.3
with:
category: "/language:${{matrix.language}}"