From a134ed1c0ebf370362f01ebc1ee42586491107ba Mon Sep 17 00:00:00 2001 From: joshL1215 <210241055+joshL1215@users.noreply.github.com> Date: Thu, 26 Feb 2026 20:33:53 -0800 Subject: [PATCH] Improved ci/cd (see associated PR) --- .github/workflows/firebase-hosting-merge.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml index a4f4c9e..7c2e43a 100644 --- a/.github/workflows/firebase-hosting-merge.yml +++ b/.github/workflows/firebase-hosting-merge.yml @@ -10,8 +10,16 @@ jobs: build_and_deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - run: npm i && npm run build + - uses: actions/checkout@v6 + + - uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' + + - run: npm ci + - run: npm run build + - uses: FirebaseExtended/action-hosting-deploy@v0 with: repoToken: '${{ secrets.GITHUB_TOKEN }}'