We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0d8593 commit 1ba2327Copy full SHA for 1ba2327
1 file changed
.github/workflows/manual-proxy-environment-deploy.yaml
@@ -18,6 +18,10 @@ on:
18
required: false
19
default: false
20
type: boolean
21
+ nodejs_version:
22
+ description: "Node.js version, set by the CI/CD pipeline workflow"
23
+ required: true
24
+ type: string
25
26
permissions:
27
contents: read
@@ -36,11 +40,10 @@ jobs:
36
40
node-version: 22
37
41
38
42
- name: Npm install
39
- working-directory: .
- env:
- NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm ci
43
- shell: bash
+ uses: ./.github/actions/node-install
44
+ with:
45
+ node-version: ${{ inputs.nodejs_version }}
46
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47
48
- name: "Check if pull request exists for this branch and set ENVIRONMENT/APIM_ENV"
49
id: pr_exists
0 commit comments