Обновить .gitea/workflows/prod.yaml
Some checks failed
Telegram Shop Bot CI [DEV] / lint (push) Failing after 40s
Some checks failed
Telegram Shop Bot CI [DEV] / lint (push) Failing after 40s
This commit is contained in:
parent
0fffb0fc0e
commit
78fca43358
@ -1,13 +1,33 @@
|
|||||||
name: "Telegram Shop Bot CI [PROD]"
|
name: "Telegram Shop Bot CI [PROD]"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: ["prod"]
|
branches:
|
||||||
|
- prod
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["prod"]
|
branches:
|
||||||
|
- prod
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
runs-on: node:22-alpine
|
runs-on: ubuntu-latest # Запуск на Ubuntu
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
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
|
Loading…
Reference in New Issue
Block a user