Skip to content

Merge pull request #145 from turetske/main #5

Merge pull request #145 from turetske/main

Merge pull request #145 from turetske/main #5

Workflow file for this run

name: golangci-lint
on:
push:
tags:
- '*'
branches:
- master
- main
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# We embed the contents of src/out/* into the resulting binaries
# That particular directory should contain outputs generated by the
# npm build. However, to keep the runtime of the linter as fast as possible,
# instead of running `npm` here, we simply create a dummy empty file.
#
# If no dummy file exists, then the linters will flag the situation as
# an error.
- name: Generate placeholder files
id: generate-placeholder
run: |
mkdir -p origin_ui/src/out
touch origin_ui/src/out/placeholder
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest