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 1bd101b commit fa2244bCopy full SHA for fa2244b
.github/workflows/localstack-tests.yml
@@ -28,6 +28,11 @@ on:
28
required: false
29
type: string
30
default: '18'
31
+ run-check-types:
32
+ description: 'Enable check types'
33
+ required: false
34
+ type: string
35
+ default: true
36
37
jobs:
38
test:
@@ -64,6 +69,10 @@ jobs:
64
69
- name: Lint
65
70
run: npm run lint
66
71
72
+ - name: Check Types
73
+ if: ${{ inputs.run-check-types }}
74
+ run: npm run check-types
75
+
67
76
- name: Install global & Test
68
77
run: |
78
sudo apt-get update
0 commit comments