feat: ci/cd
CI / 🔍 Lint & Type Check (push) Successful in 1m45s
CI / 🐳 Build & Push Image (push) Successful in 35s

This commit is contained in:
2026-07-10 21:59:07 +02:00
parent cf7f68cff7
commit 98ed11a776
6 changed files with 216 additions and 4 deletions
+65
View File
@@ -0,0 +1,65 @@
name: CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
jobs:
lint:
name: 🔍 Lint & Type Check
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@v4
- name: 🟢 Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: 📦 Cache node_modules
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: |
npm-
- name: 📥 Install dependencies
run: npm ci
- name: 🔍 Lint
run: npm run lint
docker:
name: 🐳 Build & Push Image
needs: lint
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@v4
- name: 🔐 Login Registry Gitea
run: |
docker login git.leonmorival.xyz \
-u "${{ secrets.REGISTRY_USER }}" \
-p "${{ secrets.REGISTRY_PASSWORD }}"
- name: 🏗️ Build image
run: |
docker build \
-t git.leonmorival.xyz/leonm/landing-server:latest \
-t git.leonmorival.xyz/leonm/landing-server:${{ github.sha }} \
.
- name: 📤 Push image
run: |
docker push git.leonmorival.xyz/leonm/landing-server:latest
docker push git.leonmorival.xyz/leonm/landing-server:${{ github.sha }}