Skip to content

Commit 091a0d7

Browse files
authored
Update the nodejs version to 14, for Firebase CLI (#962)
1 parent 0fa2eba commit 091a0d7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/desktop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,10 +354,10 @@ jobs:
354354
if [[ "${{ job.status }}" != "success" ]]; then
355355
exit 1
356356
fi
357-
- name: Set up Node (12)
357+
- name: Set up Node (14)
358358
uses: actions/setup-node@v2
359359
with:
360-
node-version: 12.x
360+
node-version: 14.x
361361
- name: Setup Firestore Emulator
362362
run: |
363363
npm install -g firebase-tools

.github/workflows/integration_tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -877,10 +877,10 @@ jobs:
877877
max_attempts: 3
878878
command: python scripts/gha/install_prereqs_desktop.py --gha_build --running_only --arch '${{ matrix.arch }}' --ssl '${{ matrix.ssl_variant }}'
879879

880-
- name: Set up Node (12)
880+
- name: Set up Node (14)
881881
uses: actions/setup-node@v2
882882
with:
883-
node-version: 12.x
883+
node-version: 14.x
884884
- name: Setup Firestore Emulator
885885
run: |
886886
npm install -g firebase-tools
@@ -1131,10 +1131,10 @@ jobs:
11311131
- id: get-device-type
11321132
run: |
11331133
echo "::set-output name=device_type::$( python scripts/gha/print_matrix_configuration.py -d -k ${{ matrix.android_device }} )"
1134-
- name: Set up Node (12)
1134+
- name: Set up Node (14)
11351135
uses: actions/setup-node@v2
11361136
with:
1137-
node-version: 12.x
1137+
node-version: 14.x
11381138
- name: Setup Firestore Emulator
11391139
if: steps.get-device-type.outputs.device_type == 'virtual' && contains(needs.check_and_prepare.outputs.apis, 'firestore')
11401140
run: |
@@ -1236,10 +1236,10 @@ jobs:
12361236
- id: get-device-type
12371237
run: |
12381238
echo "::set-output name=device_type::$( python scripts/gha/print_matrix_configuration.py -d -k ${{ matrix.ios_device }} )"
1239-
- name: Set up Node (12)
1239+
- name: Set up Node (14)
12401240
uses: actions/setup-node@v2
12411241
with:
1242-
node-version: 12.x
1242+
node-version: 14.x
12431243
- name: Setup Firestore Emulator
12441244
if: steps.get-device-type.outputs.device_type == 'virtual' && contains(needs.check_and_prepare.outputs.apis, 'firestore')
12451245
run: |

0 commit comments

Comments
 (0)