This commit is contained in:
nocci 2026-01-08 12:56:49 +00:00
parent 2140139fc9
commit c067ad71fe
2 changed files with 9 additions and 5 deletions

View file

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