diff --git a/.github/workflows/azure-ipam-build.yml b/.github/workflows/azure-ipam-build.yml index 5a21f0b..d0c057c 100644 --- a/.github/workflows/azure-ipam-build.yml +++ b/.github/workflows/azure-ipam-build.yml @@ -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 @@ -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