Skip to content

build(deps-dev): bump @grpc/proto-loader from 0.7.11 to 0.7.12 #1393

build(deps-dev): bump @grpc/proto-loader from 0.7.11 to 0.7.12

build(deps-dev): bump @grpc/proto-loader from 0.7.11 to 0.7.12 #1393

Workflow file for this run

# This workflow will do a clean install of node dependencies, 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: NPM CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
# Checkout project repository
- name: Checkout
uses: actions/checkout@v3
# Setup Node.js environment
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Run tests
run: |
npm ci
npm run build --if-present
npm test