Skip to content

fix: user api queue listener #10

fix: user api queue listener

fix: user api queue listener #10

Workflow file for this run

name: CI for New Pull Requests
on:
pull_request:
branches:
- "*"
paths:
- "apps/user/**" # Only trigger for changes in the apps/user directory
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Install dependencies for specific package
run: yarn workspace user install
- name: Build TypeScript project
run: yarn workspace user build
- name: Lint code with ESLint
run: yarn workspace user lint
- name: Run tests
run: yarn workspace user test