chore: bump vite from 5.4.10 to 5.4.19 in /frontend/web (#412) #740
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Proto linter | |
on: | |
push: | |
branches: | |
- main | |
- "release/v*.*.*" | |
pull_request: | |
branches: | |
- main | |
- "release/*.*.*" | |
paths: | |
- "proto/**" | |
jobs: | |
lint-protos: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup buf | |
uses: bufbuild/buf-setup-action@v1 | |
- name: buf lint | |
uses: bufbuild/buf-lint-action@v1 | |
with: | |
input: "proto" | |
- name: buf format | |
run: | | |
if [[ $(buf format -d) ]]; then | |
echo "Run 'buf format -w'" | |
exit 1 | |
fi |