Food labels page #11
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 CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install -g npm | |
- name: npm install, build and test | |
run: | | |
npm install | |
npm run build | |
- name: Archive Build | |
uses: actions/upload-artifact@v2 | |
with: | |
name: build | |
path: build | |
deploy: | |
name: Deploy | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download Build | |
uses: actions/download-artifact@v2 | |
with: | |
name: build | |
path: build | |
- name: Deploy to Firebase | |
uses: w9jds/firebase-action@master | |
with: | |
args: deploy --only hosting | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
REACT_APP_apiKey: ${{ secrets.REACT_APP_APIKEY }} | |
REACT_APP_authDomain: ${{ secrets.REACT_APP_AUTHDOMAIN }} | |
REACT_APP_projectId: ${{ secrets.REACT_APP_PROJECTID }} | |
REACT_APP_storageBucket: ${{ secrets.REACT_APP_STORAGEBUCKET }} | |
REACT_APP_messagingSenderId: ${{ secrets.REACT_APP_MESSAGINGSENDERID }} | |
REACT_APP_appId: ${{ secrets.REACT_APP_APPID }} | |
REACT_APP_measurementId: ${{ secrets.REACT_APP_MEASUREMENTID }} |