Skip to content

Commit 674514b

Browse files
authored
Add action types with validation (#472)
1 parent ad29dda commit 674514b

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,9 @@ jobs:
9595
if: ${{ matrix.os == 'windows-latest' }}
9696
- run: ./program.kexe
9797
if: ${{ matrix.os != 'windows-latest' }}
98+
99+
validate-typings:
100+
runs-on: "ubuntu-latest"
101+
steps:
102+
- uses: actions/checkout@v4
103+
- uses: typesafegithub/github-actions-typing@v1

action-types.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
inputs:
2+
version:
3+
type: string
4+
install-native:
5+
type: boolean
6+
script:
7+
type: string
8+

0 commit comments

Comments
 (0)