Skip to content

feat: upgraded all deps and node version, switched to esm #13

feat: upgraded all deps and node version, switched to esm

feat: upgraded all deps and node version, switched to esm #13

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
name: "Yaml Lint"
on: # yamllint disable-line rule:truthy
push:
paths:
- "**.yml"
- "**.yaml"
pull_request:
paths:
- "**.yml"
- "**.yaml"
jobs:
yaml-lint:
name: "Yaml lint"
runs-on: "ubuntu-latest"
steps:
- name: "Git checkout"
uses: "actions/checkout@v3"
with:
fetch-depth: 2
env:
GIT_COMMITTER_NAME: "GitHub Actions Shell"
GIT_AUTHOR_NAME: "GitHub Actions Shell"
EMAIL: "github-actions[bot]@users.noreply.github.com"
- name: "Lint YAML files"
uses: "ibiqlik/action-yamllint@v3"
with:
config_file: ".yamllint.yaml"
file_or_dir: "."
strict: true