fix: disable ssl4
Some checks failed
Node.js CI / lint (push) Successful in 19s
Node.js CI / test (push) Successful in 18s
Node.js CI / build (push) Failing after 0s

This commit is contained in:
2026-05-18 11:38:32 +03:00
parent 58ab41eec4
commit 7e8b6fc7a6

View File

@@ -7,9 +7,12 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
# Заставляем задачу выполняться сразу внутри контейнера с Node.js 18
container: node:18-alpine
steps:
# Устанавливаем git прямо внутрь контейнера alpine
- name: Install Git
run: apk add --no-cache git
- name: Clone repository
run: git clone https://iux-gitea.myddns.me/24_LitvintsevaVD/docker_lab.git .
@@ -24,6 +27,9 @@ jobs:
needs: lint
container: node:18-alpine
steps:
- name: Install Git
run: apk add --no-cache git
- name: Clone repository
run: git clone https://iux-gitea.myddns.me/24_LitvintsevaVD/docker_lab.git .
@@ -37,9 +43,12 @@ jobs:
runs-on: ubuntu-latest
needs: test
steps:
# На этапе сборки докера контейнер node не используется, git ставим стандартным apt, если нужен
- name: Install Git on Host
run: sudo apt-get update && sudo apt-get install -y git
- name: Clone repository
run: git clone https://iux-gitea.myddns.me/24_LitvintsevaVD/docker_lab.git .
# Здесь контейнер не нужен, так как собираем сам Docker-образ
- name: Build Docker Image
run: docker build -t docker_lab:latest .