2020-12-08 08:23:35 -07:00
|
|
|
'name': 'lint'
|
2021-05-21 04:55:42 -07:00
|
|
|
|
|
|
|
'env':
|
2021-12-22 06:34:51 -07:00
|
|
|
'GO_VERSION': '1.17'
|
2021-05-21 04:55:42 -07:00
|
|
|
|
2020-11-20 08:06:07 -07:00
|
|
|
'on':
|
|
|
|
'push':
|
|
|
|
'tags':
|
|
|
|
- 'v*'
|
|
|
|
'branches':
|
|
|
|
- '*'
|
|
|
|
'pull_request':
|
2021-05-21 04:55:42 -07:00
|
|
|
|
2020-11-20 08:06:07 -07:00
|
|
|
'jobs':
|
2020-12-08 08:23:35 -07:00
|
|
|
'go-lint':
|
2020-11-20 08:06:07 -07:00
|
|
|
'runs-on': 'ubuntu-latest'
|
|
|
|
'steps':
|
|
|
|
- 'uses': 'actions/checkout@v2'
|
2021-05-21 04:55:42 -07:00
|
|
|
- 'name': 'Set up Go'
|
|
|
|
'uses': 'actions/setup-go@v2'
|
|
|
|
'with':
|
|
|
|
'go-version': '${{ env.GO_VERSION }}'
|
2020-12-08 08:23:35 -07:00
|
|
|
- 'name': 'run-lint'
|
|
|
|
'run': >
|
2020-12-30 08:26:25 -07:00
|
|
|
make go-deps go-tools go-lint
|
2021-05-21 04:55:42 -07:00
|
|
|
|
2020-11-20 08:06:07 -07:00
|
|
|
'eslint':
|
|
|
|
'runs-on': 'ubuntu-latest'
|
|
|
|
'steps':
|
|
|
|
- 'uses': 'actions/checkout@v2'
|
|
|
|
- 'name': 'Install modules'
|
2020-12-30 08:26:25 -07:00
|
|
|
'run': 'npm --prefix="./client" ci'
|
2020-11-20 08:06:07 -07:00
|
|
|
- 'name': 'Run ESLint'
|
2020-12-30 08:26:25 -07:00
|
|
|
'run': 'npm --prefix="./client" run lint'
|
2021-05-21 04:55:42 -07:00
|
|
|
|
2021-12-24 10:14:36 -07:00
|
|
|
'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.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 }}'
|