Skip to content

Bump google.golang.org/grpc from 1.54.0 to 1.56.3 #55

Bump google.golang.org/grpc from 1.54.0 to 1.56.3

Bump google.golang.org/grpc from 1.54.0 to 1.56.3 #55

name: run-frontend-tests
on:
push:
branches:
- v1
- main
pull_request:
branches:
- v1
- main
schedule:
- cron: "0 9 1 * *"
jobs:
run:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
go:
- 1.18.3 #pin to 1.18.3 for now due to https://github.com/ClickHouse/ch-go/issues/160
steps:
- uses: actions/checkout@v3
- name: Setup packages
id: setup-packages
run: |
sudo apt-get update -y
sudo apt-get install -y zip zstd jq git
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: '16.x'
- name: Install Go ${{ matrix.go }}
uses: actions/[email protected]
with:
stable: false
go-version: ${{ matrix.go }}
- name: Install yarn dependencies
run: yarn install
env:
NODE_OPTIONS: "--max_old_space_size=4096"
- name: Build
run: go build -v ./...
- name: Build Frontend
run: yarn build
env:
NODE_OPTIONS: "--max_old_space_size=4096"