Skip to content

build(deps): bump @grpc/grpc-js and firebase-admin #298

build(deps): bump @grpc/grpc-js and firebase-admin

build(deps): bump @grpc/grpc-js and firebase-admin #298

Workflow file for this run

#
# node.yml
# Sportiv
#
# Created by Yefta Sutanto on 04/03/21.
#
name: CI (Build & Test)
on:
pull_request:
branches:
- development
- staging
- main
jobs:
build_and_test:
name: Build & Test for mergeability
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run Unit tests
run: npm run test