Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ inputs:
default: "production"
required: false
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'
56,749 changes: 56,608 additions & 141 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

422 changes: 364 additions & 58 deletions dist/licenses.txt

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/sourcemap-register.js

This file was deleted.

6 changes: 5 additions & 1 deletion jest.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ const config = {
moduleFileExtensions: ['js', 'ts'],
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
'^.+\\.ts$': ['ts-jest', {
tsconfig: {
module: 'commonjs'
}
}]
},
verbose: true
};
Expand Down
3,759 changes: 2,205 additions & 1,554 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "promote-play-release",
"name": "promote-play-release-action",
"version": "1.0.0",
"private": true,
"description": "Promote a Google Play release from one track to another",
Expand All @@ -10,27 +10,27 @@
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"package": "npm run build && rm -rf dist && ncc build lib/main.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevin-david/promote-play-release.git"
"url": "git+https://github.com/NHSDigital/promote-play-release-action.git"
},
"keywords": [
"actions",
"google-play"
],
"bugs": {
"url": "https://github.com/kevin-david/promote-play-release/issues"
"url": "https://github.com/NHSDigital/promote-play-release-action/issues"
},
"homepage": "https://github.com/kevin-david/promote-play-release#readme",
"author": "kevin-david",
"homepage": "https://github.com/NHSDigital/promote-play-release-action#readme",
"author": "NHSDigital",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@googleapis/androidpublisher": "^26.0.0"
"@googleapis/androidpublisher": "^37.0.0"
},
"devDependencies": {
"@types/node": "^22.14.1",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"compilerOptions": {
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"target": "es2022", /* Modern target for Node 24 runtime compatibility. */
"module": "esnext", /* Emit native ESM that matches package type=module. */
"moduleResolution": "node", /* Resolve npm packages using standard Node resolution. */
"outDir": "./lib", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"strict": true, /* Enable all strict type-checking options. */
Expand Down
Loading