add node.js install step before build

This commit is contained in:
Nick Seguin 2023-12-10 01:28:57 -06:00
parent 44807fc178
commit 94105e8e3b
2 changed files with 4 additions and 8 deletions

View file

@ -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

View file

@ -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>