Skip to content

Update node.js.yml

Update node.js.yml #10

Workflow file for this run

name: Node.js CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
run-bot:
runs-on: ubuntu-latest
environment: Production
env:
BOT_HOST: ${{ secrets.BOT_HOST }}
BOT_PORT: ${{ secrets.BOT_PORT }}
BOT_USERNAME: ${{ secrets.BOT_USERNAME }}
BOT_AUTH: ${{ secrets.BOT_AUTH }}
BOT_PASSWORD: ${{ secrets.BOT_PASSWORD }}
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm install
- name: Start bot
run: node bot.js