2021-11-13 03:13:38 -05:00
|
|
|
---
|
2021-08-21 10:40:27 -04:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2021-11-13 03:13:38 -05:00
|
|
|
golangci-lint:
|
2021-08-21 10:40:27 -04:00
|
|
|
runs-on: ubuntu-latest
|
2021-11-13 03:13:38 -05:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-01-30 04:54:26 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2021-08-21 10:40:27 -04:00
|
|
|
|
2022-01-30 04:43:48 -05:00
|
|
|
- name: Get changed files
|
|
|
|
id: changed-files
|
|
|
|
uses: tj-actions/changed-files@v14.1
|
|
|
|
with:
|
|
|
|
files: |
|
2022-03-17 14:08:49 -04:00
|
|
|
*.nix
|
2022-01-30 04:43:48 -05:00
|
|
|
go.*
|
|
|
|
**/*.go
|
|
|
|
integration_test/
|
|
|
|
config-example.yaml
|
|
|
|
|
2021-11-13 03:13:38 -05:00
|
|
|
- name: golangci-lint
|
2022-01-30 04:43:48 -05:00
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
2021-11-13 03:13:38 -05:00
|
|
|
uses: golangci/golangci-lint-action@v2
|
|
|
|
with:
|
2022-05-16 08:40:45 -04:00
|
|
|
version: v1.46.1
|
|
|
|
|
2022-01-28 12:40:39 -05:00
|
|
|
# Only block PRs on new problems.
|
|
|
|
# If this is not enabled, we will end up having PRs
|
|
|
|
# blocked because new linters has appared and other
|
|
|
|
# parts of the code is affected.
|
|
|
|
only-new-issues: true
|
|
|
|
|
2021-11-13 03:13:38 -05:00
|
|
|
prettier-lint:
|
|
|
|
runs-on: ubuntu-latest
|
2021-08-21 10:40:27 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-01-30 04:54:26 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2021-08-21 10:40:27 -04:00
|
|
|
|
2022-01-30 04:43:48 -05:00
|
|
|
- name: Get changed files
|
|
|
|
id: changed-files
|
|
|
|
uses: tj-actions/changed-files@v14.1
|
|
|
|
with:
|
|
|
|
files: |
|
2022-03-17 14:08:49 -04:00
|
|
|
*.nix
|
2022-01-30 04:43:48 -05:00
|
|
|
**/*.md
|
|
|
|
**/*.yml
|
|
|
|
**/*.yaml
|
|
|
|
**/*.ts
|
|
|
|
**/*.js
|
|
|
|
**/*.sass
|
|
|
|
**/*.css
|
|
|
|
**/*.scss
|
|
|
|
**/*.html
|
|
|
|
|
2021-11-13 03:13:38 -05:00
|
|
|
- name: Prettify code
|
2022-01-30 04:49:15 -05:00
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
2021-11-13 03:13:38 -05:00
|
|
|
uses: creyD/prettier_action@v4.0
|
|
|
|
with:
|
|
|
|
prettier_options: >-
|
|
|
|
--check **/*.{ts,js,md,yaml,yml,sass,css,scss,html}
|
|
|
|
only_changed: false
|
|
|
|
dry: true
|
|
|
|
|
|
|
|
proto-lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-08-09 08:21:45 -04:00
|
|
|
- uses: bufbuild/buf-setup-action@v1.7.0
|
2021-11-13 03:13:38 -05:00
|
|
|
- uses: bufbuild/buf-lint-action@v1
|
2021-11-13 04:18:00 -05:00
|
|
|
with:
|
2021-11-13 04:20:59 -05:00
|
|
|
input: "proto"
|