Skip to content

Commit b8a9fa2

Browse files
committed
fix: Fix ci cd issues
1 parent f67ec9c commit b8a9fa2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- run: cd demo && npm ci && npm run build
14+
- run: cd demo && npm i && npm run build
1515
- uses: FirebaseExtended/action-hosting-deploy@v0
1616
with:
1717
repoToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/firebase-hosting-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- run: cd demo && npm ci && npm run build
16+
- run: cd demo && npm i && npm run build
1717
- uses: FirebaseExtended/action-hosting-deploy@v0
1818
with:
1919
repoToken: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)