Initial commit

This commit is contained in:
2026-04-23 18:02:47 +02:00
commit 6c7fad267c
8 changed files with 266 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
on:
push:
branches: [ main ]
jobs:
publish:
runs-on: linux
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "24.15.0"
- name: Cache npm
uses: actions/cache@v4
with:
key: npm-${{ hashFiles('package-lock.json') }}
path: |
~/.npm/
- name: Install dependencies
run: npm clean-install
- name: Build
run: npm run build
- name: Publish
run: npm publish
env:
INFENDRO__TOKEN: ${{ secrets.token }}