Skip to content

Update/code quality badges #1

Update/code quality badges

Update/code quality badges #1

Workflow file for this run

name: Run ESLint on Push and Pull Requests
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18.17.0
- name: Install dependencies for the backend
run: npm install
working-directory: src/server/workspace
- name: Run Backend Tests
run: npm run test
working-directory: src/server/workspace
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}