We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3c0b50 commit 55693cbCopy full SHA for 55693cb
.github/workflows/firebase-hosting-merge.yml
@@ -11,7 +11,14 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v4
14
- - run: npm ci && npm run build
+ - 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
22
- uses: FirebaseExtended/action-hosting-deploy@v0
23
with:
24
repoToken: ${{ secrets.GITHUB_TOKEN }}
0 commit comments