Skip to content

Bump jose from 4.14.4 to 4.15.5 in /firebase/functions #186

Bump jose from 4.14.4 to 4.15.5 in /firebase/functions

Bump jose from 4.14.4 to 4.15.5 in /firebase/functions #186

name: Cloud Functions for Firebase
on:
push:
paths:
- .github/workflows/firebase_functions.yml
- 'firebase/functions/**'
jobs:
deploy:
if: ${{ github.ref == 'refs/heads/master' || contains(github.ref, 'gcf') }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: firebase/functions
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.x
- uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ hashFiles('firebase/functions/package-lock.json') }}
restore-keys: |
npm-
- run: npm install --global firebase-tools
- run: npm ci
- run: npm run deploy -- --token ${{ secrets.FIREBASE_TOKEN }}
- name: Upload npm logs
if: always()
uses: actions/upload-artifact@v4
with:
name: npm-logs
path: "~/.npm/_logs/**/*"