We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e060b6 commit 7efebb6Copy full SHA for 7efebb6
.github/actions/acceptance-tests/action.yaml
@@ -28,12 +28,16 @@ runs:
28
with:
29
name: terraform-output-${{ inputs.targetComponent }}
30
31
- - name: 'Install dependencies'
32
- shell: bash
33
- env:
34
- NODE_AUTH_TOKEN: ${{ env.GITHUB_TOKEN }}
+ - name: Get Node version
+ id: nodejs_version
35
run: |
36
- npm ci
+ echo "nodejs_version=$(grep "^nodejs\s" .tool-versions | cut -f2 -d' ')" >> $GITHUB_OUTPUT
+
+ - name: "Repo setup"
37
+ uses: ./.github/actions/node-install
38
+ with:
39
+ node-version: ${{ steps.nodejs_version.outputs.nodejs_version }}
40
+ GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }}
41
42
- name: "Set PR NUMBER"
43
shell: bash
0 commit comments