Skip to content

Bump eslint-plugin-jest from 27.9.0 to 28.5.0 #2758

Bump eslint-plugin-jest from 27.9.0 to 28.5.0

Bump eslint-plugin-jest from 27.9.0 to 28.5.0 #2758

Workflow file for this run

name: "Test"
on:
push:
pull_request:
jobs:
test:
name: "Test"
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: Install dependencies
run: npm install
- name: build
run: npm run build
- name: run test
run: npm run test
format:
name: "Format"
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: Install dependencies
run: npm install
- name: Check format
run: npm run format-check