Skip to content

Bump @typescript-eslint/eslint-plugin from 5.48.0 to 7.14.1 #91

Bump @typescript-eslint/eslint-plugin from 5.48.0 to 7.14.1

Bump @typescript-eslint/eslint-plugin from 5.48.0 to 7.14.1 #91

Workflow file for this run

name: Make dist
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
make-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js 16.x
uses: actions/setup-node@v3.5.1
with:
node-version: 16.x
- name: Install dependencies
run: npm ci
- name: Rebuild the dist/ directory
run: npm run prepare
# If index.js was different than expected, upload the expected version as an artifact
- uses: actions/upload-artifact@v3
with:
name: dist
path: dist/
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Add dist/index.js
file_pattern: dist/*.*
push_options: '--force'