Skip to content

Bump @typescript-eslint/eslint-plugin from 8.8.0 to 8.10.0 #419

Bump @typescript-eslint/eslint-plugin from 8.8.0 to 8.10.0

Bump @typescript-eslint/eslint-plugin from 8.8.0 to 8.10.0 #419

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: [email protected]
message: "build commit"
add: "dist/*.js"
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'