Skip to content

Commit 1bfd439

Browse files
authored
Add Tailwind CLI setup to CodeQL workflow
Added steps to download and configure Tailwind CLI before building the project.
1 parent 3de1264 commit 1bfd439

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,17 @@ jobs:
3737
with:
3838
dotnet-version: '10.0.x'
3939

40+
steps:
41+
# Vorherige Schritte laden den Quellcode und richten die Umgebung ein
42+
43+
# Laedt die Tailwind CLI herunter und konfiguriert zwingend benoetigte Ausfuehrungsrechte
4044
- name: Download and Configure Tailwind CLI
4145
run: |
4246
wget https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64
4347
chmod +x tailwindcss-linux-x64
4448
mv tailwindcss-linux-x64 tailwindcss
4549
50+
# Startet den eigentlichen Kompilierungsvorgang der Projektmappe
4651
- name: Build
4752
run: dotnet build src/TicketsPlease.slnx
4853

0 commit comments

Comments
 (0)