Skip to content

Bump prettier-plugin-tailwindcss from 0.6.14 to 0.7.0 in /frontend (#… #4750

Bump prettier-plugin-tailwindcss from 0.6.14 to 0.7.0 in /frontend (#…

Bump prettier-plugin-tailwindcss from 0.6.14 to 0.7.0 in /frontend (#… #4750

Workflow file for this run

name: Run CodeQL
on:
merge_group:
pull_request:
branches:
- feature/*
- main
push:
branches:
- feature/*
- 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@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- name: Initialize CodeQL
uses: github/codeql-action/init@f443b600d91635bebf5b0d9ebc620189c0d6fba5
with:
languages: ${{ matrix.language }}
- name: Install pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061
with:
version: 10
run_install: false
- name: Set up Node
if: matrix.language == 'javascript-typescript'
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903
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@f443b600d91635bebf5b0d9ebc620189c0d6fba5
with:
category: /language:${{ matrix.language }}