Skip to content

Commit fa2244b

Browse files
committed
feat: add check types
1 parent 1bd101b commit fa2244b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/localstack-tests.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ on:
2828
required: false
2929
type: string
3030
default: '18'
31+
run-check-types:
32+
description: 'Enable check types'
33+
required: false
34+
type: string
35+
default: true
3136

3237
jobs:
3338
test:
@@ -64,6 +69,10 @@ jobs:
6469
- name: Lint
6570
run: npm run lint
6671

72+
- name: Check Types
73+
if: ${{ inputs.run-check-types }}
74+
run: npm run check-types
75+
6776
- name: Install global & Test
6877
run: |
6978
sudo apt-get update

0 commit comments

Comments
 (0)