build(deps): bump cross-spawn from 7.0.3 to 7.0.6 in /chat-backend #845
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
# 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 . |