Skip to content

Protocol version 10 changes and more #77

Protocol version 10 changes and more

Protocol version 10 changes and more #77

Workflow file for this run

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]