This commit is contained in:
17
.github/workflows/Build.yml
vendored
17
.github/workflows/Build.yml
vendored
@ -24,6 +24,14 @@ jobs:
|
||||
with:
|
||||
node-version: '22'
|
||||
|
||||
# Delete existing build branch
|
||||
- name: Delete existing build branch
|
||||
run: git branch -d ${GITHUB_REF_NAME}-build || echo "Build branch not found"
|
||||
|
||||
# Create and switch to build branch
|
||||
- name: Create and switch to build branch
|
||||
run: git branch ${GITHUB_REF_NAME}-build && git switch ${GITHUB_REF_NAME}-build
|
||||
|
||||
# Install dependencies
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
@ -32,6 +40,15 @@ jobs:
|
||||
- name: Run npm build
|
||||
run: npm run build
|
||||
|
||||
# Commit build files
|
||||
- name: Commit build files to build branch
|
||||
uses: actions/checkout@v3
|
||||
run: |
|
||||
git config --global user.name 'Git Bot'
|
||||
git config --global user.email 'noreply@kozelkaricsi.hu'
|
||||
git add -f dist && git commit -am 'Build'
|
||||
git push
|
||||
|
||||
# Upload the build directory as an artifact
|
||||
- name: Upload build artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -90,6 +90,7 @@ out
|
||||
|
||||
# Nuxt.js build / generate output
|
||||
.nuxt
|
||||
dist
|
||||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
|
||||
5
dist/index.d.mts
vendored
5
dist/index.d.mts
vendored
@ -1,5 +0,0 @@
|
||||
declare class NodeTest {
|
||||
static startTest(): void;
|
||||
}
|
||||
|
||||
export { NodeTest as default };
|
||||
5
dist/index.d.ts
vendored
5
dist/index.d.ts
vendored
@ -1,5 +0,0 @@
|
||||
declare class NodeTest {
|
||||
static startTest(): void;
|
||||
}
|
||||
|
||||
export { NodeTest as default };
|
||||
42
dist/index.js
vendored
42
dist/index.js
vendored
@ -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
1
dist/index.js.map
vendored
@ -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
19
dist/index.mjs
vendored
@ -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
1
dist/index.mjs.map
vendored
@ -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":[]}
|
||||
Reference in New Issue
Block a user