chore(deps): update yarn to v4 - autoclosed #231
Workflow file for this run
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: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Install protoc | |
uses: arduino/setup-protoc@v1 | |
- name: Generate proto files | |
run: yarn generate-proto | |
- name: Build | |
run: yarn build |