We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16c8ed1 commit d0da72dCopy full SHA for d0da72d
.github/workflows/ci.yml
@@ -180,3 +180,7 @@ jobs:
180
- run: npm run lint
181
- run: npm run build
182
- run: npm test
183
+ - name: Apply yamllint
184
+ run: |
185
+ sudo pip install yamllint
186
+ yamllint .github/workflows
.yamllint.yml
@@ -0,0 +1,6 @@
1
+extends: default
2
+
3
+rules:
4
+ line-length: disable
5
+ document-start: disable
6
+ truthy: disable
0 commit comments