We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 654801b commit df545f8Copy full SHA for df545f8
.github/workflows/ci.yml
@@ -1,12 +1,14 @@
1
name: Continuous Integration
2
3
on:
4
- # We have deploy there
5
- # push:
6
- # branches: [ "main" ]
7
pull_request:
8
branches: [ "main" ]
9
workflow_dispatch:
+ inputs:
+ runLint:
+ description: 'Run the static linter'
10
+ required: false
11
+ default: false
12
13
jobs:
14
# Build job
@@ -48,8 +50,7 @@ jobs:
48
50
49
51
- name: Lint the static site
52
uses: anishathalye/proof-html@v2
- # Disabled
- if: ${{ false }}
53
+ if: ${{ inputs.runLint }}
54
with:
55
directory: ./_site
56
enforce_https: false
0 commit comments