FY25 q2 dependency updates #241
Workflow file for this run
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: Pull Request Events | |
on: pull_request | |
permissions: | |
contents: write | |
id-token: write | |
pull-requests: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-unit: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Set up code | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: 💾 Cache firebase emulators | |
uses: actions/cache@v4 | |
with: | |
path: /home/runner/.cache/firebase/emulators | |
key: ${{ runner.os }}-firebase-emulators | |
- name: ⎔ Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: 📥 Download app dependencies | |
run: npm ci | |
- name: 📥 Download function dependencies | |
working-directory: functions | |
run: npm ci | |
- name: 🧪 Run tests | |
run: npm run test:ci | |
deploy-preview: | |
name: Firebase preview | |
runs-on: ubuntu-latest | |
needs: [test-unit] | |
if: ${{ github.event.sender.type == 'User' }} | |
environment: | |
name: dev | |
steps: | |
- name: 🚀 Deploy | |
uses: agrc/firebase-website-deploy-composite-action@v1 | |
with: | |
build-command: npm run build | |
preview: yes | |
project-id: ${{ secrets.PROJECT_ID }} | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
identity-provider: ${{ secrets.IDENTITY_PROVIDER }} | |
service-account-email: ${{ secrets.SERVICE_ACCOUNT_EMAIL }} | |
env: | |
VITE_FIREBASE_API_KEY: ${{ secrets.VITE_FIREBASE_API_KEY }} | |
VITE_FIREBASE_AUTH_DOMAIN: ${{ secrets.VITE_FIREBASE_AUTH_DOMAIN }} | |
VITE_FIREBASE_DATABASE_URL: ${{ secrets.VITE_FIREBASE_DATABASE_URL }} | |
VITE_FIREBASE_PROJECT_ID: ${{ secrets.VITE_FIREBASE_PROJECT_ID }} | |
VITE_FIREBASE_STORAGE_BUCKET: ${{ secrets.VITE_FIREBASE_STORAGE_BUCKET }} | |
VITE_FIREBASE_MESSAGING_SENDER_ID: ${{ secrets.VITE_FIREBASE_MESSAGING_SENDER_ID }} | |
VITE_FIREBASE_APPID: ${{ secrets.VITE_FIREBASE_APPID }} | |
VITE_FIREBASE_MEASUREMENT_ID: ${{ secrets.VITE_FIREBASE_MEASUREMENT_ID }} | |
VITE_DISCOVER_KEY: ${{ secrets.VITE_DISCOVER_KEY }} | |
VITE_API_KEY_PREVIEW: ${{ secrets.VITE_UGRC_PREVIEW_API_KEY }} |