From 2a6cb30e0c7b1cb1292b0eddd9bac2ebb3f1a723 Mon Sep 17 00:00:00 2001 From: Lahiru Maramba Date: Fri, 7 Jan 2022 11:04:03 -0500 Subject: [PATCH 1/2] chore: Update Node.js version in CI workflow - Firebase CLI dropped support for Node.js 10. Updating the Node.js version to 12 for emulator test setup. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d81f932a8..da769041a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,10 +22,10 @@ jobs: pip install -r requirements.txt - name: Test with pytest run: pytest - - name: Set up Node.js 10 + - name: Set up Node.js 12 uses: actions/setup-node@v1 with: - node-version: 10.x + node-version: 12.x - name: Run integration tests against emulator run: | npm install -g firebase-tools From c80a30378934c1c09afc36b467c6cec744dea983 Mon Sep 17 00:00:00 2001 From: Lahiru Maramba Date: Fri, 7 Jan 2022 14:34:11 -0500 Subject: [PATCH 2/2] Update ci.yml Update the version to current LTS 16 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da769041a..0ae8f6585 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,10 +22,10 @@ jobs: pip install -r requirements.txt - name: Test with pytest run: pytest - - name: Set up Node.js 12 + - name: Set up Node.js 16 uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 16.x - name: Run integration tests against emulator run: | npm install -g firebase-tools