Skip to content

Bump fast-xml-parser from 4.4.0 to 4.5.0 in /firebase/functions #208

Bump fast-xml-parser from 4.4.0 to 4.5.0 in /firebase/functions

Bump fast-xml-parser from 4.4.0 to 4.5.0 in /firebase/functions #208

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: 18.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/**/*"