Skip to content

Update eslint-plugin-jest to version 27.6.2 #277

Update eslint-plugin-jest to version 27.6.2

Update eslint-plugin-jest to version 27.6.2 #277

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['16.x', '17.x']
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test --ci --maxWorkers=2
- name: Codecov
uses: codecov/codecov-action@v2.1.0