mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 10:58:29 -07:00
046ec13fdc
Merge in DNS/adguard-home from 2297-yaml to master
Closes #2297.
Squashed commit of the following:
commit 85df3a38a14adb1965944ddf14b197c12a213057
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Fri Nov 20 17:52:22 2020 +0300
all: improve HACKING.md
commit 079acdfe41cc12ab6aa13d7c28dcbf7b7b3c8380
Merge: 202ea078e 3045da174
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Fri Nov 20 17:50:34 2020 +0300
Merge branch 'master' into 2297-yaml
commit 202ea078e29d88871a32ac6e668dfae6db802bab
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Thu Nov 12 20:25:42 2020 +0300
all: reformat yaml, add yaml formatting standard
47 lines
1.4 KiB
YAML
47 lines
1.4 KiB
YAML
'name': 'golangci-lint'
|
|
'on':
|
|
'push':
|
|
'tags':
|
|
- 'v*'
|
|
'branches':
|
|
- '*'
|
|
'pull_request':
|
|
'jobs':
|
|
'golangci':
|
|
'runs-on': 'ubuntu-latest'
|
|
'steps':
|
|
- 'uses': 'actions/checkout@v2'
|
|
- 'name': 'golangci-lint'
|
|
'uses': 'golangci/golangci-lint-action@v2.3.0'
|
|
'with':
|
|
# This field is required. Don't set the patch version to always use
|
|
# the latest patch version.
|
|
'version': 'v1.32'
|
|
'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':
|
|
- 'golangci'
|
|
- 'eslint'
|
|
# Secrets are not passed to workflows that are triggered by a pull request
|
|
# from a fork.
|
|
'if': "${{ 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'
|
|
'env':
|
|
'GITHUB_TOKEN': '${{ secrets.GITHUB_TOKEN }}'
|
|
'SLACK_WEBHOOK_URL': '${{ secrets.SLACK_WEBHOOK_URL }}'
|