From 58ab41eec4eb939e667e9993076097b277fcac0b Mon Sep 17 00:00:00 2001 From: vlitvintseva <24_LitvintsevaVD@iux.local> Date: Mon, 18 May 2026 11:34:03 +0300 Subject: [PATCH] fix: disable ssl3 --- .github/workflows/ci.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc281d9..e50fee2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,16 +7,12 @@ on: jobs: lint: runs-on: ubuntu-latest + # Заставляем задачу выполняться сразу внутри контейнера с Node.js 18 + container: node:18-alpine steps: - - name: Clone repository run: git clone https://iux-gitea.myddns.me/24_LitvintsevaVD/docker_lab.git . - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: 18 - - name: Install dependencies run: npm ci @@ -26,15 +22,11 @@ jobs: test: runs-on: ubuntu-latest needs: lint + container: node:18-alpine steps: - name: Clone repository run: git clone https://iux-gitea.myddns.me/24_LitvintsevaVD/docker_lab.git . - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: 18 - - name: Install dependencies run: npm ci @@ -48,5 +40,6 @@ jobs: - 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 .