Skip to content

Commit ff2fb27

Browse files
chore: Run nightly builds on Node 14 (#1717)
* chore: Run nightly builds on Node 14 - Node 12 reached EoL in April 2022. - `firebase-tools` has dropped support for Node 12 this breaks our nightly workflows. - Updating the nightly workflow to run on Node 14 (we will also deprecate and drop support for Node 12 in Admin SDK in the upcoming releases). * Run emulator tests only on Node 14
1 parent 43da861 commit ff2fb27

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- name: Run api-extractor
2828
run: npm run api-extractor
2929
- name: Run emulator-based integration tests
30+
if: matrix.node-version == '14.x'
3031
run: |
3132
npm install -g firebase-tools
3233
firebase emulators:exec --project fake-project-id --only auth,database,firestore \

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Node.js
3737
uses: actions/setup-node@v1
3838
with:
39-
node-version: 12.x
39+
node-version: 14.x
4040

4141
- name: Install and build
4242
run: |

0 commit comments

Comments
 (0)