From c63ca6801b03adc27d31a5e6a4ae83aac1ea03fc Mon Sep 17 00:00:00 2001 From: Obelous <47227283+0belous@users.noreply.github.com> Date: Tue, 24 Jun 2025 17:46:16 +0100 Subject: [PATCH] test setup workflow --- .github/workflows/node.js.yml | 8 ++++++++ manifest.json | 0 package.json | 20 ++++++++++++++++++++ update.js | 0 4 files changed, 28 insertions(+) create mode 100644 .github/workflows/node.js.yml create mode 100644 manifest.json create mode 100644 package.json create mode 100644 update.js diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 0000000..75fa1fc --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,8 @@ +steps: +- uses: actions/checkout@v4 +- uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' +- run: npm install +- run: npm run diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..e69de29 diff --git a/package.json b/package.json new file mode 100644 index 0000000..3045c55 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "jellyfin-monolith", + "version": "1.0.0", + "description": "", + "homepage": "https://github.com/0belous/jellyfin-monolith#readme", + "bugs": { + "url": "https://github.com/0belous/jellyfin-monolith/issues" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/0belous/jellyfin-monolith.git" + }, + "license": "ISC", + "author": "", + "type": "commonjs", + "main": "update.js", + "scripts": { + "run": "echo \"Error: no test specified\" && exit 1" + } +} diff --git a/update.js b/update.js new file mode 100644 index 0000000..e69de29