Skip to content

Commit a74078d

Browse files
committed
DIGITAL-702: Rearrange cloudgov-deploy-app, temporarly output node version
1 parent c506708 commit a74078d

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/cloudgov-deploy-app.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
16-
- name: installNodeVersion
17-
uses: actions/setup-node@v6
18-
with:
19-
node-version: '>=22.2.0'
2016
- name: Set environment
2117
run: |
2218
BRANCH=$(echo $GITHUB_REF | cut -d'/' -f 3-)
@@ -58,11 +54,14 @@ jobs:
5854
if [ "${COMPOSER_DEV}" = "1" ]; then
5955
sed -i 's/--no-dev //' .bp-config/options.json || exit 0
6056
fi
61-
6257
- name: Set repo name
6358
run: echo "REPO_NAME=${{ github.event.repository.name }}" >> $GITHUB_ENV
64-
- name: Install basic dependancies
59+
- name: Install basic dependencies
6560
run: ./scripts/pipeline/deb-basic-deps.sh
61+
- name: Install node version 22
62+
uses: actions/setup-node@v6
63+
with:
64+
node-version: '>=22.2.0'
6665
- name: Install Cloudfoundry CLI
6766
run: ./scripts/pipeline/deb-cf-install.sh
6867
- name: Cloud.gov login
@@ -75,7 +74,9 @@ jobs:
7574
source ./scripts/pipeline/cloud-gov-login.sh
7675
cf target -s "${CF_SPACE}" >/dev/null 2>&1
7776
- name: Build theme
78-
run: ./orch/build_node.sh
77+
run: |
78+
node -v || true
79+
./orch/build_node.sh
7980
- name: Deploy App
8081
env:
8182
PROJECT: "${{ secrets.PROJECT }}"

0 commit comments

Comments
 (0)