fix: user api queue listener #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |