Compare commits

...

33 Commits

Author SHA1 Message Date
ed5609cc05 Merge pull request 'dev' (#11) from dev into main
All checks were successful
Build and Save Artifact / build (push) Successful in 12s
Reviewed-on: #11
2024-09-15 15:35:06 +00:00
ef603893d4 Merge branch 'main' into dev
All checks were successful
Build and Save Artifact / build (pull_request) Successful in 12s
2024-09-15 15:22:39 +00:00
f437c74634 Test commit
All checks were successful
Build and Save Artifact / build (pull_request) Successful in 13s
2024-09-15 17:19:02 +02:00
a1439f7c3d Test commit
All checks were successful
Build and Save Artifact / build (pull_request) Successful in 11s
2024-09-15 17:18:10 +02:00
7578ff60f0 Update Actions
All checks were successful
Build and Save Artifact / build (pull_request) Successful in 12s
2024-09-15 17:16:34 +02:00
02d87f88da Update Actions
Some checks failed
Build and Save Artifact / build (pull_request) Failing after 5s
2024-09-15 17:15:34 +02:00
0945bb417f Update Actions
Some checks failed
Build and Save Artifact / build (pull_request) Failing after 6s
2024-09-15 17:12:04 +02:00
44498fed29 Update Actions: Source branch name
Some checks failed
Build and Save Artifact / build (pull_request) Failing after 7s
2024-09-15 17:09:36 +02:00
8a4a11caf6 Actions: Other method for branch name
Some checks failed
Build and Save Artifact / build (pull_request) Failing after 6s
2024-09-15 17:06:27 +02:00
afb015fed1 Actions: Remove dev branch 2024-09-15 17:02:55 +02:00
1ba617e863 Update Actions
Some checks failed
Build and Save Artifact / build (push) Successful in 12s
Build and Save Artifact / build (pull_request) Failing after 6s
2024-09-15 17:02:26 +02:00
c06b06c748 Actions: New username
Some checks failed
Build and Save Artifact / build (push) Successful in 12s
Build and Save Artifact / build (pull_request) Failing after 6s
2024-09-15 16:54:54 +02:00
fad9d4279b Test commit
All checks were successful
Build and Save Artifact / build (push) Successful in 14s
2024-09-15 16:52:37 +02:00
d11bca611e Actions: Add unshallow to fetch
All checks were successful
Build and Save Artifact / build (push) Successful in 12s
2024-09-15 16:51:42 +02:00
d596c6caba Update Actions
Some checks failed
Build and Save Artifact / build (push) Failing after 7s
2024-09-15 16:45:57 +02:00
2990d65a63 Actions: Revert revert git merge command
Some checks failed
Build and Save Artifact / build (push) Failing after 9s
2024-09-15 16:42:17 +02:00
0110936f32 Test
Some checks failed
Build and Save Artifact / build (push) Failing after 6s
2024-09-15 16:41:35 +02:00
158d85d821 Actions: Redo merge command
All checks were successful
Build and Save Artifact / build (push) Successful in 11s
2024-09-15 16:40:41 +02:00
c3710d152e Actions: Remove -a from commit
Some checks failed
Build and Save Artifact / build (push) Failing after 5s
2024-09-15 16:39:29 +02:00
b6cbdce51f Move git config
Some checks failed
Build and Save Artifact / build (push) Failing after 6s
2024-09-15 16:37:20 +02:00
81baa4f3d4 Actions: --allow-unrelated-histories
Some checks failed
Build and Save Artifact / build (push) Failing after 6s
2024-09-15 16:36:21 +02:00
cff26ff339 Actions: Add "Nothing to commit" to prevent fail
Some checks failed
Build and Save Artifact / build (push) Failing after 5s
2024-09-15 16:33:40 +02:00
f37033a178 Update Actions as ChatGPT recommended
Some checks failed
Build and Save Artifact / build (push) Failing after 9s
2024-09-15 16:30:38 +02:00
da25dac794 Actions: Switch branch first
All checks were successful
Build and Save Artifact / build (push) Successful in 11s
2024-09-15 16:27:23 +02:00
cbcdb66417 Actions: Merge if branch exists
All checks were successful
Build and Save Artifact / build (push) Successful in 11s
2024-09-15 16:25:33 +02:00
bdd36603df Version bump
All checks were successful
Build and Save Artifact / build (push) Successful in 11s
2024-09-15 16:17:33 +02:00
cc86f845a2 Hello, World!
All checks were successful
Build and Save Artifact / build (push) Successful in 12s
2024-09-15 16:16:10 +02:00
1ae8cbeef5 Update Actions
All checks were successful
Build and Save Artifact / build (push) Successful in 11s
2024-09-15 16:12:38 +02:00
28e3afafae Update Actions - Fix upstream error
Some checks failed
Build and Save Artifact / build (push) Failing after 10s
2024-09-15 16:10:46 +02:00
76f4106fd7 Update Actions
Some checks failed
Build and Save Artifact / build (push) Failing after 9s
2024-09-15 16:09:39 +02:00
8b72c4d148 Build with actions
Some checks failed
Build and Save Artifact / build (push) Failing after 0s
2024-09-15 16:06:59 +02:00
974597fd16 Update actions
All checks were successful
Build and Save Artifact / build (push) Successful in 12s
2024-09-15 15:10:30 +02:00
c753270446 Actions
All checks were successful
Build and Save Artifact / build (push) Successful in 1m17s
2024-09-15 15:07:13 +02:00
10 changed files with 70 additions and 74 deletions

67
.github/workflows/Build.yml vendored Normal file
View File

@ -0,0 +1,67 @@
name: Build and Save Artifact
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v3
# Set up Node.js environment
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch
# Initialize build branch
- name: Initialize build branch
run: |
SOURCE_BRANCH_NAME=${{ steps.extract_branch.outputs.branch }}
git config --global user.name 'Git Workflow Bot'
git config --global user.email 'noreply@kozelkaricsi.hu'
git fetch origin
git checkout ${SOURCE_BRANCH_NAME}
BRANCH_NAME="${SOURCE_BRANCH_NAME}-build"
git fetch origin $BRANCH_NAME --unshallow || true # Allow failure if branch doesn't exist
git switch $BRANCH_NAME || git switch -c $BRANCH_NAME
git merge ${SOURCE_BRANCH_NAME} -m "Update branch [skip ci]"
rm -rf dist
# Install dependencies
- name: Install dependencies
run: npm install
# Build the project
- name: Run npm build
run: npm run build
# Commit build files
- name: Commit build files to build branch
run: |
git add -f dist
git commit -m "Build" || echo "Nothing to commit"
git push origin HEAD --force # Push to the current branch
# Upload the build directory as an artifact
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: build-artifact
path: |
./dist
./package.json

1
.gitignore vendored
View File

@ -90,6 +90,7 @@ out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/

5
dist/index.d.mts vendored
View File

@ -1,5 +0,0 @@
declare class NodeTest {
static startTest(): void;
}
export { NodeTest as default };

5
dist/index.d.ts vendored
View File

@ -1,5 +0,0 @@
declare class NodeTest {
static startTest(): void;
}
export { NodeTest as default };

42
dist/index.js vendored
View File

@ -1,42 +0,0 @@
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
default: () => NodeTest
});
module.exports = __toCommonJS(src_exports);
// src/test.ts
function test(i) {
console.log(`Hello, World! (#${i})`);
}
// src/index.ts
var NodeTest = class {
static startTest() {
let i = 0;
setInterval(() => {
i++;
test(i);
}, 1e3);
}
};
//# sourceMappingURL=index.js.map

1
dist/index.js.map vendored
View File

@ -1 +0,0 @@
{"version":3,"sources":["../src/index.ts","../src/test.ts"],"sourcesContent":["import test from \"./test\";\r\n\r\nexport default class NodeTest {\r\n static startTest() {\r\n let i: number = 0;\r\n setInterval(() => {\r\n i++;\r\n test(i);\r\n }, 1000);\r\n }\r\n}\r\n","export default function test(i: number) {\r\n console.log(`Hello, World! (#${i})`);\r\n}"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAe,SAAR,KAAsB,GAAW;AACpC,UAAQ,IAAI,mBAAmB,CAAC,GAAG;AACvC;;;ADAA,IAAqB,WAArB,MAA8B;AAAA,EAC1B,OAAO,YAAY;AACf,QAAI,IAAY;AAChB,gBAAY,MAAM;AACd;AACA,WAAK,CAAC;AAAA,IACV,GAAG,GAAI;AAAA,EACX;AACJ;","names":[]}

19
dist/index.mjs vendored
View File

@ -1,19 +0,0 @@
// src/test.ts
function test(i) {
console.log(`Hello, World! (#${i})`);
}
// src/index.ts
var NodeTest = class {
static startTest() {
let i = 0;
setInterval(() => {
i++;
test(i);
}, 1e3);
}
};
export {
NodeTest as default
};
//# sourceMappingURL=index.mjs.map

1
dist/index.mjs.map vendored
View File

@ -1 +0,0 @@
{"version":3,"sources":["../src/test.ts","../src/index.ts"],"sourcesContent":["export default function test(i: number) {\r\n console.log(`Hello, World! (#${i})`);\r\n}","import test from \"./test\";\r\n\r\nexport default class NodeTest {\r\n static startTest() {\r\n let i: number = 0;\r\n setInterval(() => {\r\n i++;\r\n test(i);\r\n }, 1000);\r\n }\r\n}\r\n"],"mappings":";AAAe,SAAR,KAAsB,GAAW;AACpC,UAAQ,IAAI,mBAAmB,CAAC,GAAG;AACvC;;;ACAA,IAAqB,WAArB,MAA8B;AAAA,EAC1B,OAAO,YAAY;AACf,QAAI,IAAY;AAChB,gBAAY,MAAM;AACd;AACA,WAAK,CAAC;AAAA,IACV,GAAG,GAAI;AAAA,EACX;AACJ;","names":[]}

View File

@ -1,6 +1,6 @@
{
"name": "node-module-test",
"version": "1.0.0",
"version": "1.0.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",

View File

@ -1,6 +1,7 @@
import test from "./test";
export function startTest() {
console.log("Hello, World!");
let i: number = 0;
setInterval(() => {
i++;