Skip to content

add discord bot

add discord bot #95

Workflow file for this run

name: Backend build CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
APP_PATH: server/ecommerce
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Installing dependencies
run: cd $APP_PATH && npm i
- name: Run tests
run: cd $APP_PATH && npm test