telegram-shop/.gitea/workflows/dev.yaml
NW e44cbc0189
Some checks failed
Telegram Shop Bot CI [DEV] / lint (push) Failing after 42s
Обновить .gitea/workflows/dev.yaml
2024-11-14 23:39:10 +00:00

40 lines
1.1 KiB
YAML

name: "Telegram Shop Bot CI [DEV]"
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
lint:
runs-on: ubuntu-latest # Запуск на Ubuntu
steps:
- name: Check DNS Resolution
run: curl -I https://git.softuniq.eu
- name: Checkout code
uses: actions/checkout@v3
with:
repository-url: https://git.softuniq.eu/Telegram-Market/telegram-shop
ref: 3b112d891e4c1f06c8f1a4141d290705712bb4d8
path: /workspace/Telegram-Market/telegram-shop
- 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