From 45e98fe9f96a3f6e7b21bb0eaf0e4794cc8144ea Mon Sep 17 00:00:00 2001 From: ishanwardhono Date: Sun, 10 Mar 2024 09:25:51 +0000 Subject: [PATCH] change workflow to use node 14 --- .github/workflows/deploy-prod.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 409481b..edc69c4 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -13,6 +13,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: Set up Node.js version 14 + uses: actions/setup-node@v2 + with: + node-version: '14' + cache: 'npm' - run: npm install - run: CI=false npm run build - uses: FirebaseExtended/action-hosting-deploy@v0