add node.js install step before build
This commit is contained in:
parent
44807fc178
commit
94105e8e3b
2 changed files with 4 additions and 8 deletions
|
@ -14,8 +14,6 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
- name: install pnpm
|
||||
run: npm install -g pnpm
|
||||
- name: pnpm install
|
||||
run: pnpm install
|
||||
- name: dotnet restore
|
||||
run: dotnet restore
|
||||
- name: dotnet build
|
||||
|
|
|
@ -325,13 +325,11 @@
|
|||
<_ContentIncludedByDefault Remove="wwwroot\lib\20\solid\x-mark.svg" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<Target Name="Tailwind" BeforeTargets="Build" Condition="'$(CI)' != 'true'">
|
||||
<Exec Command="bun run css:build"/>
|
||||
<Target Name="NodeInstall" BeforeTargets="Build">
|
||||
<Exec Command="pnpm install" />
|
||||
</Target>
|
||||
|
||||
|
||||
<Target Name="Tailwind" BeforeTargets="Build" Condition="'$(CI)' == 'true'">
|
||||
<Exec Command="npm run css:build"/>
|
||||
<Target Name="TailwindBuild" BeforeTargets="Build">
|
||||
<Exec Command="pnpm run css:build"/>
|
||||
</Target>
|
||||
</Project>
|
Loading…
Reference in a new issue