Skip to content

Commit

Permalink
Add action types (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoColman committed Aug 14, 2022
1 parent 4d64c5e commit a410b40
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/action-types.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Validate action typings

on:
push:
pull_request:
workflow_dispatch:

jobs:
validate-typings:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: krzema12/github-actions-typing@v0
64 changes: 64 additions & 0 deletions action-types.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
inputs:
api-level:
type: integer
target:
type: enum
allowed-values:
- default
- google_apis
- google_apis_playstore
- aosp_atd
- google_atd
- android-wear
- android-wear-cn
- android-tv
- google-tv
arch:
type: enum
allowed-values:
- x86
- x86_64
- arm64-v8a
profile:
type: string
cores:
type: integer
ram-size:
type: string
heap-size:
type: string
sdcard-path-or-size:
type: string
disk-size:
type: string
avd-name:
type: string
force-avd-creation:
type: boolean
emulator-options:
type: string
disable-animations:
type: boolean
disable-spellchecker:
type: boolean
disable-linux-hw-accel:
type: string
enable-hw-keyboard:
type: boolean
emulator-build:
type: string
working-directory:
type: string
ndk:
type: string
cmake:
type: string
channel:
type: enum
allowed-values:
- stable
- beta
- dev
- canary
script:
type: string

0 comments on commit a410b40

Please sign in to comment.