Bump @typescript-eslint/eslint-plugin from 8.8.0 to 8.10.0 #419
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}' |