Skip to content

Load Requirement Ranking for Frontend #540

Load Requirement Ranking for Frontend

Load Requirement Ranking for Frontend #540

Workflow file for this run

name: Deploy PR Snapshot
on: pull_request
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
- name: NPM Install
run: npm install
- name: Build
run: npm run build:staging
- name: Deploy
uses: FirebaseExtended/action-hosting-deploy@v0
if: env.SECRET != null
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_CORNELLDTI_COURSEPLAN_DEV }}'
projectId: cornelldti-courseplan-dev
expires: 30d
env:
FIREBASE_CLI_PREVIEWS: hostingchannels
SECRET: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_CORNELLDTI_COURSEPLAN_DEV }}