mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-12 11:06:53 +08:00
* Bump ts-jest from 29.2.5 to 29.3.2 Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 29.2.5 to 29.3.2. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/kulshekhar/ts-jest/compare/v29.2.5...v29.3.2) --- updated-dependencies: - dependency-name: ts-jest dependency-version: 29.3.2 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Refresh `dist/index.js` ```julia begin using NodeJS_20_jll run(`make cleanall`); run(`$(node()) $(npm) ci`); run(`$(node()) $(npm) run build`); run(`$(node()) $(npm) run pack`); end; ``` --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mosè Giordano <m.giordano@ucl.ac.uk>
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "setup-julia",
|
|
"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.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.2",
|
|
"async-retry": "^1.3.3",
|
|
"semver": "^7.7.0",
|
|
"toml": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/async-retry": "^1.4.9",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.15.3",
|
|
"@types/retry": "^0.12.5",
|
|
"@types/semver": "^7.5.8",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"jest": "^29.7.0",
|
|
"jest-circus": "^29.7.0",
|
|
"nock": "^14.0.4",
|
|
"prettier": "^3.5.3",
|
|
"ts-jest": "^29.3.3",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|