chore(deps): update dependency typescript to v5.6.3 #340
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: build | |
on: | |
push: | |
branches: | |
- "master" | |
- "*.*.*" | |
- "renovate/**" | |
tags: | |
- "*.*.*" | |
pull_request: | |
branches: | |
- "master" | |
- "*.*.*" | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install protoc | |
uses: arduino/setup-protoc@v1 | |
- name: Generate proto files | |
run: pnpm generate-proto | |
- name: Build | |
run: pnpm build |