Skip to content

Commit e51b35a

Browse files
authored
feat: add new workflow linter
See https://github.com/github/super-linter/
1 parent 1b6bf53 commit e51b35a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/linter.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Lint Code Base
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- 'master'
7+
8+
jobs:
9+
build:
10+
# Name the Job
11+
name: Lint Code Base
12+
# Set the agent to run on
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
# Checkout the code base
17+
- name: Checkout Code
18+
uses: actions/checkout@v2
19+
20+
# Run Linter against code base
21+
- name: Lint Code Base
22+
uses: docker://github/super-linter:v2.1.0

0 commit comments

Comments
 (0)