Skip to content

Commit

Permalink
Merge pull request #234 from Azure/build-workflow-fix5
Browse files Browse the repository at this point in the history
Fixed NPM Install Step
  • Loading branch information
DCMattyG authored Feb 22, 2024
2 parents 7e69bde + 8d4a2bb commit 09f438d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/azure-ipam-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,11 @@ jobs:
- run: echo "Job triggered by a ${{ github.event_name }} event to main."

- name: "Setup NodeJS v18"
id: setupNode
uses: actions/setup-node@v4
with:
node-version: 18

- name: Install NPM Packages
run: npm install

- name: Checkout Azure IPAM Code
uses: actions/checkout@v4

Expand Down Expand Up @@ -75,6 +73,11 @@ jobs:
./version.ps1 -BumpBuild
}
- name: Install NPM Packages
id: installNpmPackages
working-directory: ui
run: npm install

- name: "Create Azure IPAM ZIP Asset"
id: buildZipAsset
working-directory: tools
Expand Down

0 comments on commit 09f438d

Please sign in to comment.