Skip to content

Commit 55693cb

Browse files
chore: update GitHub Actions workflow to use Yarn for dependency management and build process
1 parent a3c0b50 commit 55693cb

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/firebase-hosting-merge.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,14 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- run: npm ci && npm run build
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: '20'
17+
cache: yarn
18+
- name: Install dependencies
19+
run: yarn install --frozen-lockfile
20+
- name: Build
21+
run: yarn build
1522
- uses: FirebaseExtended/action-hosting-deploy@v0
1623
with:
1724
repoToken: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)