Bump the firebase group across 2 directories with 5 updates #2371
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy Preview | |
| on: pull_request | |
| jobs: | |
| build_and_preview: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Create temp serviceAccount.json | |
| run: echo "{}" > serviceAccount.json | |
| - run: npm ci | |
| - run: npm run build | |
| - uses: FirebaseExtended/action-hosting-deploy@v0 | |
| with: | |
| repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
| # See docs/tutorials/04-deploy.md for configuring these | |
| projectId: hoverboard-master | |
| firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_HOVERBOARD_MASTER }}' |