Skip to content

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

Bump eslint-plugin-jest from 27.9.0 to 28.5.0

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

Workflow file for this run

name: "Build and commit"
on:
push:
branches:
- master
- ci/*
jobs:
run:
name: "Build and commit"
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
- name: Install dependencies
run: npm install
- name: Update source code
run: npm run build && npm run package
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: GitHub Actions
author_email: 41658782+ChanTsune@users.noreply.github.com
message: "build commit"
add: "dist/*.js"
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'