Added missing dist folder with action executable nodejs script.
Some checks failed
Test Action / test (push) Failing after 46s

This commit is contained in:
2026-01-11 00:07:45 +01:00
parent e5a9e910b2
commit 464bc61030
3 changed files with 72 additions and 2 deletions

2
.gitignore vendored
View File

@@ -1,6 +1,6 @@
node_modules/ node_modules/
dist/
lib/ lib/
*.log *.log
*.map
.DS_Store .DS_Store
Notes.md Notes.md

70
dist/index.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -4,7 +4,7 @@
"description": "A GitHub Action to download a tool", "description": "A GitHub Action to download a tool",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --outfile=dist/index.js --sourcemap", "build": "esbuild src/index.ts --bundle --platform=node --target=node24 --outfile=dist/index.js --minify",
"format": "prettier --write '**/*.ts'", "format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'", "format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts", "lint": "eslint src/**/*.ts",