fixed the date parsing function #600
Workflow file for this run
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
name: Run CodeQL | |
on: | |
merge_group: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
code-ql: | |
name: CodeQL | |
permissions: | |
security-events: write | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
language: | |
- javascript-typescript | |
- python | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Install pnpm | |
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda | |
with: | |
version: 10 | |
run_install: false | |
- name: Set up Node | |
if: matrix.language == 'javascript-typescript' | |
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e | |
with: | |
node-version: 22 | |
cache: 'pnpm' | |
cache-dependency-path: frontend/pnpm-lock.yaml | |
- name: Install dependencies for frontend | |
if: matrix.language == 'javascript-typescript' | |
working-directory: frontend | |
run: pnpm install --frozen-lockfile | |
- name: Perform CodeQL analysis | |
uses: github/codeql-action/analyze@45775bd8235c68ba998cffa5171334d58593da47 | |
with: | |
category: /language:${{ matrix.language }} |