-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (34 loc) · 1006 Bytes
/
actionlint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright (c) NetApp, Inc.
# SPDX-License-Identifier: Apache-2.0
name: Lint
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Super-linter
uses: super-linter/[email protected] # x-release-please-version
env:
DEFAULT_BRANCH: main
# To report GitHub Actions status checks, you must provide a GitHub token.
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
VALIDATE_BASH : true
VALIDATE_BASH_EXEC : true
BASH_SEVERITY : "error"
VALIDATE_GITHUB_ACTIONS : true
VALIDATE_MARKDOWN : true
VALIDATE_NATURAL_LANGUAGE : true
VALIDATE_POWERSHELL : true
VALIDATE_TERRAFORM_FMT : true
VALIDATE_YAML : true