Update home component content & remove services section #127
Workflow file for this run
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: Verify Pull Request, deploy to brockcsc-pr.web.app | |
| on: | |
| pull_request: | |
| branches: | |
| - development | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@master | |
| - name: Install Dependencies | |
| run: npm install | |
| - name: Build | |
| run: npm run build:dev | |
| - name: Archive Production Artifact | |
| uses: actions/upload-artifact@master | |
| with: | |
| name: dist | |
| path: dist | |
| deploy: | |
| name: Deploy to brockcsc-pr.web.app | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@master | |
| - name: Download Artifact | |
| uses: actions/download-artifact@master | |
| with: | |
| name: dist | |
| path: dist | |
| - name: Deploy to Firebase | |
| uses: w9jds/firebase-action@master | |
| with: | |
| args: deploy --only hosting:brockcsc-pr | |
| env: | |
| GCP_SA_KEY: ${{ secrets.GCP_SA_KEY_BROCKCSC_TEST }} |