Skip to content

Bump @grpc/grpc-js from 1.10.7 to 1.10.8 #649

Bump @grpc/grpc-js from 1.10.7 to 1.10.8

Bump @grpc/grpc-js from 1.10.7 to 1.10.8 #649

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
jobs:
static-check:
name: Format and Lint
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Install node
uses: actions/setup-node@v4
- run: npm install -g yarn
- run: yarn install
- run: yarn format
- run: yarn linter
build-test:
name: Build and Test
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Install node
uses: actions/setup-node@v4
- run: npm install -g yarn
- run: yarn install
- run: yarn build
- run: yarn test