2021-03-23 05:04:10 +01:00
|
|
|
name: Linters
|
2022-01-20 06:38:54 +01:00
|
|
|
permissions: read-all
|
|
|
|
|
2021-03-23 05:04:10 +01:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2022-08-12 06:17:38 +02:00
|
|
|
- main
|
2023-11-25 05:35:08 +01:00
|
|
|
workflow_dispatch:
|
2021-03-23 05:04:10 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
jshint:
|
|
|
|
name: Javascript Linter
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-05 00:35:18 +02:00
|
|
|
- uses: actions/checkout@v4
|
2021-03-23 05:04:10 +01:00
|
|
|
- name: Install jshint
|
|
|
|
run: |
|
2022-01-20 06:33:10 +01:00
|
|
|
sudo npm install -g jshint@2.13.3
|
2021-03-23 05:04:10 +01:00
|
|
|
- name: Run jshint
|
|
|
|
run: jshint ui/static/js/*.js
|
|
|
|
|
|
|
|
golangci:
|
|
|
|
name: Golang Linter
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-05 00:35:18 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-11 23:21:48 +01:00
|
|
|
- uses: actions/setup-go@v5
|
2021-03-23 05:04:10 +01:00
|
|
|
with:
|
2024-02-17 20:22:02 +01:00
|
|
|
go-version: "1.22"
|
2024-02-12 23:35:43 +01:00
|
|
|
- uses: golangci/golangci-lint-action@v4
|
2021-03-23 05:04:10 +01:00
|
|
|
with:
|
2023-05-10 04:06:36 +02:00
|
|
|
args: --timeout 10m --skip-dirs tests --disable errcheck --enable sqlclosecheck --enable misspell --enable gofmt --enable goimports --enable whitespace
|