Skip to content

Bump @grpc/grpc-js and firebase #64

Bump @grpc/grpc-js and firebase

Bump @grpc/grpc-js and firebase #64

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Test and build
on:
pull_request:
branches: [ master ]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# extract `engines.node` from package.json and save it to output
- name: Get Node.JS version from package.json
id: get-versions
run: echo ::set-output name=node::$(jq -r .engines.node ./package.json)
- uses: actions/setup-node@v3
with:
node-version: ${{steps.get-versions.outputs.node}}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run types
- run: npm run build --if-present