Skip to content

Bump eslint-plugin-jest from 26.2.2 to 28.8.1 #215

Bump eslint-plugin-jest from 26.2.2 to 28.8.1

Bump eslint-plugin-jest from 26.2.2 to 28.8.1 #215

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
npm test
env:
CI: true