Skip to content

build(deps): bump github/codeql-action/init from 3.36.3 to 4.37.1 #124

build(deps): bump github/codeql-action/init from 3.36.3 to 4.37.1

build(deps): bump github/codeql-action/init from 3.36.3 to 4.37.1 #124

Workflow file for this run

name: Code Quality
on:
workflow_dispatch:
push:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
verify:
name: Verify Stability
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: codra_test
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
DATABASE_URL: postgresql://postgres:postgres@127.0.0.1:5432/codra_test
TEST_DATABASE_URL: postgresql://postgres:postgres@127.0.0.1:5432/codra_test
GITHUB_APP_SLUG: codra-test-app
GITHUB_APP_WEBHOOK_SECRET: fake-webhook-secret
GITHUB_CLIENT_ID: fake-dashboard-client-id
GITHUB_CLIENT_SECRET: fake-dashboard-client-secret
AUTH_CALLBACK_URL: https://codra.test/auth/github/callback
APP_URL: https://codra.test
DASHBOARD_ALLOWED_USERS: devarshishimpi
BOT_USERNAME: codra-test-app
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Static Analysis (Typecheck)
run: npm run typecheck
- name: Automated Tests
run: npm test