Skip to content

chore(deps): update fsfe/reuse-action action to v4 #380

chore(deps): update fsfe/reuse-action action to v4

chore(deps): update fsfe/reuse-action action to v4 #380

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Steffen Vogel <post@steffenvogel.de>
# SPDX-License-Identifier: Apache-2.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json
---
name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y protobuf-compiler make
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install build and test dependencies
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
npm --prefix frontend install
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
args: --timeout=10m
- name: Build code
run: |
make frontend
make backend