├── .gitattributes ├── .github └── workflows │ ├── bat.yml │ └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yml ├── README.md ├── SECURITY.md ├── action.yml ├── devel └── contributing.md ├── jest.config.js ├── license.txt ├── package.json ├── sample └── TheTruth.m ├── scripts └── setupdeps.sh ├── src └── index.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/bat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/.github/workflows/bat.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/action.yml -------------------------------------------------------------------------------- /devel/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/devel/contributing.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/jest.config.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/package.json -------------------------------------------------------------------------------- /sample/TheTruth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/sample/TheTruth.m -------------------------------------------------------------------------------- /scripts/setupdeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/scripts/setupdeps.sh -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-command/HEAD/tsconfig.json --------------------------------------------------------------------------------