Skip to content

chore(deps): update dependency eslint to v9 #399

chore(deps): update dependency eslint to v9

chore(deps): update dependency eslint to v9 #399

Workflow file for this run

name: Test
on:
workflow_dispatch:
workflow_call:
push:
branches-ignore:
- main
paths-ignore:
- 'README.md'
- 'LICENSE'
pull_request:
branches:
- develop
jobs:
test:
runs-on: ubuntu-latest
env:
URI_MONGO_DB: ${{ secrets.MONGO_CONNECTION_STRING }}
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install npm
run: npm install
- name: Install Codecov
run: npm install -g codecov
- name: Run ESLint
run: npm run linter
- name: Run coverage
run: npm run coverage
- name: Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests