dev #1

Merged
nocci merged 51 commits from dev into main 2026-03-06 16:31:29 +01:00
2 changed files with 9 additions and 5 deletions
Showing only changes of commit c067ad71fe - Show all commits

View file

@ -12,15 +12,18 @@ env:
jobs:
lint:
runs-on: self-hosted
container:
image: node:20-alpine # oder node:20-slim
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
@ -98,3 +101,4 @@ jobs:
- name: Push image
run: |
docker push "${{ secrets.REGISTRY_IMAGE }}:${{ env.IMAGE_TAG }}"