Обновить .gitea/workflows/test.yml
Some checks failed
Build and Test Application / build (push) Failing after 7s

This commit is contained in:
mt77 2025-04-11 21:01:08 +05:00
parent 5a67664739
commit 321f927de4

View File

@ -7,13 +7,20 @@ jobs:
build:
runs-on: docker
steps:
# Шаг 1: Checkout кода
# Шаг 1: Установка Node.js
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
# Шаг 2: Установка Node.js
# Шаг 2: Установка зависимостей и сборка
- name: Install dependencies and build
run: |
npm ci
npm run build
# Шаг 3: Checkout кода
- name: Checkout repository
uses: actions/checkout@v3