Skip to content

Update package.json + .nvmrc deps (#60) #120

Update package.json + .nvmrc deps (#60)

Update package.json + .nvmrc deps (#60) #120

Workflow file for this run

---
name: Lint
"on":
push:
branches:
- main
pull_request:
branches:
- "*"
workflow_dispatch: {}
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
env:
# renovate datasource: docker, depName: hadolint/hadolint
hadolint-version: 2.12.0
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Lint Dockerfile
run: docker run --rm -i hadolint/hadolint:${{ env.hadolint-version }} < Dockerfile
# uses .markdownlint.yml for configuration
- name: markdownlint
uses: DavidAnson/[email protected]
with:
globs: |
.github/**/*.md
*.md
- name: yamllint
uses: ibiqlik/[email protected]
with:
file_or_dir: |
.github/**/*.yml
.*.yml
strict: true
config_file: .yamllint.yml
- name: actionlint
uses: reviewdog/action-actionlint@4f8f9963ca57a41e5fd5b538dd79dbfbd3e0b38a # v1.54.0
env:
SHELLCHECK_OPTS: -o all