chore: add tags field to account api proto file #1715
This file contains 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: pr-ui-web | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "ui/web-v2/**" | |
- "!**/**.md" | |
- "proto/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
NODE_VERSION: 18 | |
PROTOC_VERSION: 23.4 | |
WEB_DIRECTORY: "ui/web-v2" | |
jobs: | |
build: | |
defaults: | |
run: | |
working-directory: ${{ env.WEB_DIRECTORY }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
- name: Restore cached node_modules | |
uses: actions/cache@v4 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install Protoc | |
uses: arduino/setup-protoc@c65c819552d16ad3c9b72d9dfd5ba5237b9c906b # v3.0.0 | |
with: | |
version: ${{ env.PROTOC_VERSION }} | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies | |
run: yarn install | |
- name: Check proto files | |
run: make gen_proto_check | |
- name: Lint | |
run: make lint | |
- name: Build | |
run: make build |