Skip to content

fix(quickstart): wait for final TimescaleDB process #4

fix(quickstart): wait for final TimescaleDB process

fix(quickstart): wait for final TimescaleDB process #4

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, reopened, synchronize, ready_for_review]
schedule:
- cron: '0 4 * * 1'
permissions:
actions: read
contents: read
security-events: write
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze ${{ matrix.label }}
runs-on: ubuntu-24.04
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
include:
- language: javascript-typescript
label: JavaScript and TypeScript
- language: python
label: Python
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v4