File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -45,22 +45,26 @@ jobs:
4545 id : check_client
4646 run : |
4747 if [ -d "MyApp.Client" ] && [ -f "MyApp.Client/package.json" ]; then
48- echo "client_exists=true" >> $GITHUB_OUTPUT
49- else
50- echo "client_exists=false" >> $GITHUB_OUTPUT
48+ echo "requires_npm=true" >> $GITHUB_OUTPUT
5149 fi
5250
5351 - name : Setup Node.js
54- if : steps.check_client.outputs.client_exists == 'true'
52+ if : steps.check_client.outputs.requires_npm == 'true'
5553 uses : actions/setup-node@v3
5654 with :
5755 node-version : 22
5856
5957 - name : Install npm dependencies
60- if : steps.check_client.outputs.client_exists == 'true'
58+ if : steps.check_client.outputs.requires_npm == 'true'
6159 working-directory : ./MyApp.Client
6260 run : npm install
6361
62+ - name : Install tailwindcss
63+ run : |
64+ mkdir -p /home/runner/.local/bin
65+ curl -o "/home/runner/.local/bin/tailwindcss" -L "https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64"
66+ chmod +x /home/runner/.local/bin/tailwindcss
67+
6468 - name : Install x tool
6569 run : dotnet tool install -g x
6670
You can’t perform that action at this time.
0 commit comments