Protocol version 10 changes and more #75
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SH Linter | |
on: | |
# push: | |
# branches: [ '*' ] | |
# branches: [ master,alpha ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
shlint: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: SH Lint Check | |
uses: ludeeus/action-shellcheck@master | |
env: | |
SHELLCHECK_OPTS: -e SC2089 -e SC2090 -e SC2034 | |
with: | |
scandir: "./scripts" | |
severity: "warning" | |
additional_files: "./scripts/cnode-helper-scripts/env, ./scripts/cnode-helper-scripts/cntools.library, ./scripts/cnode-helper-scripts/mithril.library" | |
jsonlint: | |
name: JSON and YAML Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: JSON/YAML Validate | |
uses: GrantBirki/[email protected] |