Skip to content

Add buf installation, removed fetch depth #636

Add buf installation, removed fetch depth

Add buf installation, removed fetch depth #636

Workflow file for this run

name: Checks
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install buf
run: |
curl -sSL https://github.com/bufbuild/buf/releases/download/v1.47.2/buf-Linux-x86_64 -o /usr/local/bin/buf
chmod +x /usr/local/bin/buf
buf --version
- run: yarn
- run: yarn lint:all
- run: yarn build:all
- run: yarn test:all