Skip to content

Update cities-v0.yml #846

Update cities-v0.yml

Update cities-v0.yml #846

Workflow file for this run

# This is a workflow to check syntax on JavaScript
name: ESLint
# Controls when the workflow will run
on:
pull_request:
branches: [ main ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
eslint-chat-backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install modules - Chat Backend
working-directory: ./chat-backend
run: yarn
- name: Run ESLint - Chat Backend
working-directory: ./chat-backend
run: yarn run eslint .