test: matches modal with contact information #48
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: Firebase Auto Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
# build: | |
# name: Build and Test | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout Code | |
# uses: actions/checkout@v4 | |
# - name: Setup Node | |
# uses: actions/setup-node@v4 | |
# with: | |
# node-version: 'lts/*' | |
# - name: Install Dependencies | |
# run: npm install | |
# - name: Build Project | |
# run: npm run build | |
# - name: Run Tests | |
# run: npm test | |
deploy: | |
name: Deploy to Firebase | |
# needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- name: Cache dependencies 📦 | |
uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Build Project | |
run: npm run build | |
- name: Install Firebase Tools | |
run: npm install -g firebase-tools | |
- name: Deploy to Firebase | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
run: firebase deploy --token "${{ secrets.FIREBASE_TOKEN }}" --non-interactive |