mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-12 02:56:54 +08:00
* Support the special version "MIN" * Support JULIA_PROJECT * Add tests * Add forgotten test fixtures * Get latest prerelease/release * No special pre-release behaviour * Add test for NPM semver difference * Robust test suite * Disallow less-than-equal * Refactor validJuliaCompatRange to return a validRange * Rename MIN to min * Rename getProjectFile to getProjectFilePath * Comment on "project" input * Additional tests for getProjectFilePath * Add comment on `juliaCompatRange` Co-authored-by: Dilum Aluthge <dilum@aluthge.com> * Update dependencies --------- Co-authored-by: Dilum Aluthge <dilum@aluthge.com>
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "setup-julia",
|
|
"version": "2.3.0",
|
|
"private": true,
|
|
"description": "setup Julia action",
|
|
"main": "lib/setup-julia.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"pack": "ncc build",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/julia-actions/setup-julia.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"julia",
|
|
"setup"
|
|
],
|
|
"author": "Sascha Mann <git@mail.saschamann.eu>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"async-retry": "^1.3.3",
|
|
"semver": "^7.6.3",
|
|
"toml": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/async-retry": "^1.4.8",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^22.5.1",
|
|
"@types/retry": "^0.12.5",
|
|
"@types/semver": "^7.5.8",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"jest": "^29.7.0",
|
|
"jest-circus": "^29.7.0",
|
|
"nock": "^13.5.4",
|
|
"prettier": "^3.3.3",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^5.5.4"
|
|
}
|
|
}
|