Skip to content

Commit

Permalink
Do Node stuff as part of Github build
Browse files Browse the repository at this point in the history
So I don't forget to do it locally
  • Loading branch information
golf1052 committed Nov 19, 2024
1 parent ba586a2 commit 00c3622
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/main_seattle-carsinbikelanes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,19 @@ jobs:
with:
dotnet-version: '8.0.x'

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'

- name: Install npm dependencies
working-directory: SeattleCarsInBikeLanes
run: npm install

- name: Run webpack
working-directory: SeattleCarsInBikeLanes
run: npx webpack

- name: Build with dotnet
run: dotnet build SeattleCarsInBikeLanes/SeattleCarsInBikeLanes.csproj --configuration Release

Expand Down

0 comments on commit 00c3622

Please sign in to comment.