├── .github ├── dependabot.yaml └── workflows │ └── test.yaml ├── .gitignore ├── LICENSE ├── README.md ├── action.yaml ├── config ├── .node-version ├── .prettierrc ├── action.yaml ├── dist │ ├── index.js │ └── licenses.txt ├── index.js ├── package-lock.json └── package.json ├── setup └── action.yaml └── test └── .fvmrc /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/action.yaml -------------------------------------------------------------------------------- /config/.node-version: -------------------------------------------------------------------------------- 1 | v20.8.0 -------------------------------------------------------------------------------- /config/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/config/.prettierrc -------------------------------------------------------------------------------- /config/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/config/action.yaml -------------------------------------------------------------------------------- /config/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/config/dist/index.js -------------------------------------------------------------------------------- /config/dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/config/dist/licenses.txt -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/config/index.js -------------------------------------------------------------------------------- /config/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/config/package-lock.json -------------------------------------------------------------------------------- /config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/config/package.json -------------------------------------------------------------------------------- /setup/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/setup/action.yaml -------------------------------------------------------------------------------- /test/.fvmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuhnroyal/flutter-fvm-config-action/HEAD/test/.fvmrc --------------------------------------------------------------------------------