├── .editorconfig ├── .eslintrc.json ├── .githooks └── pre-commit ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ └── args.test.ts ├── action.yml ├── dist └── index.js ├── jest.config.json ├── package.json ├── src ├── args.ts ├── main.ts └── versions.ts ├── tsconfig.eslint.json ├── tsconfig.json └── types └── mock-env └── index.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @actions-rs:registry=https://npm.pkg.github.com 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/args.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/__tests__/args.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/dist/index.js -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/jest.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/package.json -------------------------------------------------------------------------------- /src/args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/src/args.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/src/versions.ts -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/mock-env/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/toolchain/HEAD/types/mock-env/index.d.ts --------------------------------------------------------------------------------