From 2f30cb4c14847cdc1f65d889a3fbdbadf0277da7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20W=C4=85=C5=9B?= <63346093+KT-Trez@users.noreply.github.com> Date: Wed, 5 Nov 2025 21:48:05 +0100 Subject: [PATCH] fix: CI/CD config --- .github/workflows/pipeline.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 8ede54d..923ae4b 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -1,4 +1,4 @@ -name: Deploy to Render.com +name: Build Docker image and push it to Docker Hub jobs: build: runs-on: ubuntu-latest @@ -6,16 +6,13 @@ jobs: - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: '20.x' + node-version: '24.x' - name: Check out repository uses: actions/checkout@v4 - name: Install dependencies - run: npm install - - - name: Build - run: npm run build + run: npm ci - name: Log in to Docker Hub uses: docker/login-action@v3