Skip to content

Commit b0e6f40

Browse files
committed
Update to Node.js 14
1 parent 2233a03 commit b0e6f40

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [12.x, 14.x]
12+
node-version: [14.x, 16.x]
1313

1414
steps:
1515
- uses: actions/checkout@v1
@@ -27,7 +27,6 @@ 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'
3130
run: |
3231
npm install -g firebase-tools
3332
firebase emulators:exec --project fake-project-id --only auth,database,firestore \

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Set up Node.js
4848
uses: actions/setup-node@v1
4949
with:
50-
node-version: 12.x
50+
node-version: 14.x
5151

5252
- name: Install and build
5353
run: |
@@ -116,7 +116,7 @@ jobs:
116116
- name: Set up Node.js
117117
uses: actions/setup-node@v1
118118
with:
119-
node-version: 12.x
119+
node-version: 14.x
120120

121121
- name: Publish preflight check
122122
id: preflight

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"license": "Apache-2.0",
77
"homepage": "https://firebase.google.com/",
88
"engines": {
9-
"node": ">=12.7.0"
9+
"node": ">=14"
1010
},
1111
"scripts": {
1212
"build": "gulp build",

0 commit comments

Comments
 (0)