Merge pull request #204 from vegaprotocol/cleanup-dead-nodes #569
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: Lint | |
"on": | |
pull_request: | |
branches: | |
- main | |
- master | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Lint JSON | |
uses: creyD/prettier_action@v3.3 | |
with: | |
prettier_options: --check **/*.json | |
- name: Lint YAML | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
config_data: | | |
extends: default | |
rules: | |
line-length: | |
max: 160 | |
- name: Lint genesis network parameters containing embedded JSON | |
run: ./.lint-genesis-embedded-json.sh |