Skip to content

Bump follow-redirects from 1.15.4 to 1.15.6 (#439) #295

Bump follow-redirects from 1.15.4 to 1.15.6 (#439)

Bump follow-redirects from 1.15.4 to 1.15.6 (#439) #295

Workflow file for this run

# Build and deploy app to firebase on master push
name: Firebase Deploy
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Install & Build
run: |
npm i --legacy-peer-deps
npm run build --if-present
env:
CI: false
- uses: w9jds/firebase-action@master
with:
args: deploy --only hosting
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}