Skip to content

Bump @typescript-eslint/eslint-plugin from 8.21.0 to 8.28.0 #432

Bump @typescript-eslint/eslint-plugin from 8.21.0 to 8.28.0

Bump @typescript-eslint/eslint-plugin from 8.21.0 to 8.28.0 #432

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 }}'