Bump @google-cloud/firestore and firebase-admin in /Backend #188
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
# Made by Vanam Hemanth | |
# name of the workflow | |
name: Build backend NODEJS app and test | |
# Trigger the workflow push or pull request. | |
on: [pull_request,push] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up NODEJS version | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- name: install all dependencies, build and test | |
run: | | |
cd Backend/ | |
npm ci | |
npm run build --if-present | |
npm run test --if-present |