Bump protobufjs from 6.11.3 to 6.11.4 #44
This file contains 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: Preview Prod | |
on: | |
pull_request_target: | |
branches: | |
- main | |
jobs: | |
build_and_preview_website: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v2.1.5 | |
with: | |
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0 | |
node-version: 14.x # optional | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
# Check out the pull request HEAD | |
ref: ${{ github.event.pull_request.head.sha }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build | |
run: | | |
npm ci | |
cd ./functions && npm ci && npm run lint && cd .. | |
npm run test | |
npm run build | |
- name: Deploy | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_PROD }}" | |
projectId: unlucky-validators |