Skip to content

added linting to CI

added linting to CI #5

Workflow file for this run

name: Ci
on:
pull_request:
branches: [ master, development ]
jobs:
build:
name: Build binary
runs-on: ubuntu-latest
container:
image: golangci/golangci-lint:latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18
- run: npm ci
- name: Build with make
run: make build
lint:
name: Lint go code with golangci
runs-on: ubuntu-latest
container:
image: golangci/golangci-lint:latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: lint
run: |
ls -la
make lint
shell: bash