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: 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