mirror of
https://github.com/fluencelabs/marine.git
synced 2025-03-15 14:00:50 +00:00
38 lines
801 B
YAML
38 lines
801 B
YAML
name: lint
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows/**"
|
|
- ".github/renovate.json"
|
|
|
|
concurrency:
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
reviewdog:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Lint actions
|
|
uses: reviewdog/action-actionlint@v1
|
|
env:
|
|
SHELLCHECK_OPTS: "-e SC2086 -e SC2207 -e SC2128"
|
|
with:
|
|
reporter: github-pr-check
|
|
fail_on_error: true
|
|
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Renovate Config Validator
|
|
uses: tj-actions/renovate-config-validator@v2
|
|
with:
|
|
config_file: .github/renovate.json
|