Skip to content

Bump @bufbuild/buf from 1.39.0 to 1.43.0 in /impl/google-protobuf in the google-protobuf group #521

Bump @bufbuild/buf from 1.39.0 to 1.43.0 in /impl/google-protobuf in the google-protobuf group

Bump @bufbuild/buf from 1.39.0 to 1.43.0 in /impl/google-protobuf in the google-protobuf group #521

Workflow file for this run

name: ci
on:
pull_request:
branches: [main]
workflow_dispatch:
# Prevent writing to the repository using the CI token.
# Ref: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions
permissions: read-all
jobs:
ci:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: Install
run: npm ci
- name: Run tests and create report
run: npm test
- name: Update license headers
run: npm run license-header
- name: Format
run: npm run format
- name: Check Diff
run: |
[[ -z $(git status --porcelain | tee /dev/stderr) ]] || exit 1