Skip to content

Bump eslint-plugin-jest from 28.2.0 to 28.5.0 #1715

Bump eslint-plugin-jest from 28.2.0 to 28.5.0

Bump eslint-plugin-jest from 28.2.0 to 28.5.0 #1715

Workflow file for this run

name: unit-tests
on:
pull_request:
branches:
- dev
- releases/v1
- releases/v2
push:
branches:
- '*'
tags-ignore:
- '*.*'
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Install Yarn
run: npm install -g yarn
- name: Install and Test
run: |
yarn install --frozen-lockfile
yarn lint:check
yarn lint:format:check
yarn test
- name: Uploade CodeCov Report
uses: codecov/codecov-action@v4.3.0
with:
token: ${{ secrets.CODECOV_TOKEN }}