mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-01-03 20:47:20 +03:00
5565b9e1c1
Squashed commit of the following: commit 304703195e66e935a5900b07d1cefea262a4689d Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Mar 6 15:42:57 2024 +0300 all: log changes better commit c47f31ac7f6be6d5bada670065f20c32b0bd29e9 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Mar 6 15:33:19 2024 +0300 bamboo-specs: upd img commit 5286ca1afe2c04e9b1d0b55bcbcd02d462947e8c Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Mar 6 14:59:18 2024 +0300 tools: upd go commit fd5e94f0d4afadbf48deab1cee4ee23f82f1bd0f Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Mar 6 14:11:05 2024 +0300 all: upd go
65 lines
1.6 KiB
YAML
65 lines
1.6 KiB
YAML
'name': 'lint'
|
|
|
|
'env':
|
|
'GO_VERSION': '1.21.8'
|
|
|
|
'on':
|
|
'push':
|
|
'tags':
|
|
- 'v*'
|
|
'branches':
|
|
- '*'
|
|
'pull_request':
|
|
|
|
'jobs':
|
|
'go-lint':
|
|
'runs-on': 'ubuntu-latest'
|
|
'steps':
|
|
- 'uses': 'actions/checkout@v2'
|
|
- 'name': 'Set up Go'
|
|
'uses': 'actions/setup-go@v3'
|
|
'with':
|
|
'go-version': '${{ env.GO_VERSION }}'
|
|
- 'name': 'run-lint'
|
|
'run': >
|
|
make go-deps go-tools go-lint
|
|
|
|
'eslint':
|
|
'runs-on': 'ubuntu-latest'
|
|
'steps':
|
|
- 'uses': 'actions/checkout@v2'
|
|
- 'name': 'Install modules'
|
|
'run': 'npm --prefix="./client" ci'
|
|
- 'name': 'Run ESLint'
|
|
'run': 'npm --prefix="./client" run lint'
|
|
|
|
'notify':
|
|
'needs':
|
|
- 'go-lint'
|
|
- 'eslint'
|
|
# Secrets are not passed to workflows that are triggered by a pull request
|
|
# from a fork.
|
|
#
|
|
# Use always() to signal to the runner that this job must run even if the
|
|
# previous ones failed.
|
|
'if':
|
|
${{
|
|
always() &&
|
|
github.repository_owner == 'AdguardTeam' &&
|
|
(
|
|
github.event_name == 'push' ||
|
|
github.event.pull_request.head.repo.full_name == github.repository
|
|
)
|
|
}}
|
|
'runs-on': 'ubuntu-latest'
|
|
'steps':
|
|
- 'name': 'Conclusion'
|
|
'uses': 'technote-space/workflow-conclusion-action@v1'
|
|
- 'name': 'Send Slack notif'
|
|
'uses': '8398a7/action-slack@v3'
|
|
'with':
|
|
'status': '${{ env.WORKFLOW_CONCLUSION }}'
|
|
'fields': 'repo, message, commit, author, workflow'
|
|
'env':
|
|
'GITHUB_TOKEN': '${{ secrets.GITHUB_TOKEN }}'
|
|
'SLACK_WEBHOOK_URL': '${{ secrets.SLACK_WEBHOOK_URL }}'
|