update Gitea workflow

This commit is contained in:
2026-05-22 21:19:15 +03:00
parent 13af873ec2
commit 35fd19ba58
+43 -14
View File
@@ -1,29 +1,58 @@
name: TypeScript Bot CI name: TypeScript Bot CI
on: on:
push:
branches: [ main, master, develop ]
pull_request:
workflow_dispatch: workflow_dispatch:
env:
REGISTRY: gitea.mlgt.ru
IMAGE_OWNER: ${{ gitea.repository_owner }}
IMAGE_NAME: tg-chat-bot
jobs: jobs:
check: check:
runs-on: node runs-on: node26
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install dependencies - name: Cache package managers
run: pnpm install --frozen-lockfile uses: actions/cache@v4
with:
path: |
~/.npm
~/.cache/yarn
/pnpm/store
key: node-${{ hashFiles('package-lock.json', 'pnpm-lock.yaml', 'yarn.lock') }}
restore-keys: |
node-
- name: Typecheck - name: Set up Docker Buildx
run: pnpm exec tsc --noEmit uses: docker/setup-buildx-action@v3
- name: Lint - name: Log into registry ${{ env.REGISTRY }}
run: pnpm run lint if: gitea.event_name != 'pull_request'
run: |
echo "${{ secrets.REGISTRY_TOKEN }}" | docker login "$REGISTRY" \
-u "${{ secrets.REGISTRY_USER }}" \
--password-stdin
- name: Test - name: Extract Docker metadata
run: pnpm run test --if-present id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable=${{ gitea.ref_name == 'master' }}
type=ref,event=branch
- name: Build - name: Build and push Docker image
run: pnpm run build id: build-and-push
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile
push: ${{ gitea.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max