Удалить .gitea/workflows/prod.yaml
Some checks failed
Telegram Shop Bot CI [DEV] / lint (push) Has been cancelled

This commit is contained in:
NW 2024-11-15 02:13:50 +00:00
parent 9e9f6cb076
commit a1d4a7f157

View File

@ -1,33 +0,0 @@
name: "Telegram Shop Bot CI [PROD]"
on:
push:
branches:
- prod
pull_request:
branches:
- prod
jobs:
lint:
runs-on: ubuntu-latest # Запуск на Ubuntu
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js 22
run: |
echo "Устанавливаем Node.js 22"
curl -sL https://deb.nodesource.com/setup_22.x | sudo -E bash -
sudo apt-get install -y nodejs
node -v # Проверка установленной версии Node.js
- name: Install dependencies
run: |
echo "Устанавливаем зависимости"
npm install
- name: Run lint
run: |
echo "Запуск линтинга"
npm run lint